Quellcode durchsuchen

Update hst-install.sh

Updated installation URLs to reflect branch structure.
Kristan Kenney vor 7 Jahren
Ursprung
Commit
009b6dea09
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  1. 2 2
      install/hst-install.sh

+ 2 - 2
install/hst-install.sh

@@ -50,7 +50,7 @@ fi
 
 # Check wget
 if [ -e '/usr/bin/wget' ]; then
-    wget -q https://raw.githubusercontent.com/hestiacp/hestiacp/master/install/hst-install-$type.sh -O hst-install-$type.sh
+    wget -q https://raw.githubusercontent.com/hestiacp/hestiacp/beta/install/hst-install-$type.sh -O hst-install-$type.sh
     if [ "$?" -eq '0' ]; then
         bash hst-install-$type.sh $*
         exit
@@ -62,7 +62,7 @@ fi
 
 # Check curl
 if [ -e '/usr/bin/curl' ]; then
-    curl -s -O https://raw.githubusercontent.com/hestiacp/hestiacp/master/install/hst-install-$type.sh
+    curl -s -O https://raw.githubusercontent.com/hestiacp/hestiacp/beta/install/hst-install-$type.sh
     if [ "$?" -eq '0' ]; then
         bash hst-install-$type.sh $*
         exit