We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7dff502 commit c473431Copy full SHA for c473431
1 file changed
install/hst-install.sh
@@ -74,7 +74,7 @@ fi
74
check_wget_curl(){
75
# Check wget
76
if [ -e '/usr/bin/wget' ]; then
77
- 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/release/install/hst-install-$type.sh -O hst-install-$type.sh
78
if [ "$?" -eq '0' ]; then
79
bash hst-install-$type.sh $*
80
exit
@@ -86,7 +86,7 @@ check_wget_curl(){
86
87
# Check curl
88
if [ -e '/usr/bin/curl' ]; then
89
- curl -s -O https://raw.githubusercontent.com/hestiacp/hestiacp/master/install/hst-install-$type.sh
+ curl -s -O https://raw.githubusercontent.com/hestiacp/hestiacp/release/install/hst-install-$type.sh
90
91
92
0 commit comments