mirror of
https://github.com/coollabsio/coolify.git
synced 2026-03-11 08:55:47 +00:00
Merge branch 'next' into fix-amd-on-arm-and-dep
This commit is contained in:
commit
c8663bbc99
2 changed files with 6 additions and 1 deletions
|
|
@ -43,7 +43,7 @@
|
||||||
<h4 class="py-2 ">Select another Private Key</h4>
|
<h4 class="py-2 ">Select another Private Key</h4>
|
||||||
<div class="flex flex-wrap gap-2">
|
<div class="flex flex-wrap gap-2">
|
||||||
@foreach ($privateKeys as $key)
|
@foreach ($privateKeys as $key)
|
||||||
<x-forms.button wire:click.defer="setPrivateKey('{{ $key->id }}')">{{ $key->name }}
|
<x-forms.button wire:click="setPrivateKey('{{ $key->id }}')">{{ $key->name }}
|
||||||
</x-forms.button>
|
</x-forms.button>
|
||||||
@endforeach
|
@endforeach
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -83,6 +83,11 @@ if [ "$OS_TYPE" = "manjaro" ] || [ "$OS_TYPE" = "manjaro-arm" ]; then
|
||||||
OS_TYPE="arch"
|
OS_TYPE="arch"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Check if the OS is Endeavour OS, if so, change it to arch
|
||||||
|
if [ "$OS_TYPE" = "endeavouros" ]; then
|
||||||
|
OS_TYPE="arch"
|
||||||
|
fi
|
||||||
|
|
||||||
# Check if the OS is Asahi Linux, if so, change it to fedora
|
# Check if the OS is Asahi Linux, if so, change it to fedora
|
||||||
if [ "$OS_TYPE" = "fedora-asahi-remix" ]; then
|
if [ "$OS_TYPE" = "fedora-asahi-remix" ]; then
|
||||||
OS_TYPE="fedora"
|
OS_TYPE="fedora"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue