From daa2700b1c4679637206f52502476240e79e1c79 Mon Sep 17 00:00:00 2001 From: Luna Midori <118759930+lunamidori5@users.noreply.github.com> Date: Wed, 27 Nov 2024 22:37:18 -0800 Subject: [PATCH 1/2] Added support for Endeavour OS as arch --- scripts/install.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/install.sh b/scripts/install.sh index 3f1bec0c4..1a039f64f 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -83,6 +83,11 @@ if [ "$OS_TYPE" = "manjaro" ] || [ "$OS_TYPE" = "manjaro-arm" ]; then OS_TYPE="arch" 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 if [ "$OS_TYPE" = "fedora-asahi-remix" ]; then OS_TYPE="fedora" From 0bc823108dfd02a0cddc97b46b74a9f5b4c7e8c8 Mon Sep 17 00:00:00 2001 From: kleintonno <116087195+kleintonno@users.noreply.github.com> Date: Thu, 28 Nov 2024 10:40:44 +0100 Subject: [PATCH 2/2] fix deploy selection in applications source menu --- resources/views/livewire/project/application/source.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/views/livewire/project/application/source.blade.php b/resources/views/livewire/project/application/source.blade.php index 4095c63e0..4aab498e9 100644 --- a/resources/views/livewire/project/application/source.blade.php +++ b/resources/views/livewire/project/application/source.blade.php @@ -43,7 +43,7 @@

Select another Private Key

@foreach ($privateKeys as $key) - {{ $key->name }} + {{ $key->name }} @endforeach