Skip to content

Commit c473431

Browse files
committed
Download installer always from release branch.
1 parent 7dff502 commit c473431

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

install/hst-install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ fi
7474
check_wget_curl(){
7575
# Check wget
7676
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
77+
wget -q https://raw.githubusercontent.com/hestiacp/hestiacp/release/install/hst-install-$type.sh -O hst-install-$type.sh
7878
if [ "$?" -eq '0' ]; then
7979
bash hst-install-$type.sh $*
8080
exit
@@ -86,7 +86,7 @@ check_wget_curl(){
8686

8787
# Check curl
8888
if [ -e '/usr/bin/curl' ]; then
89-
curl -s -O https://raw.githubusercontent.com/hestiacp/hestiacp/master/install/hst-install-$type.sh
89+
curl -s -O https://raw.githubusercontent.com/hestiacp/hestiacp/release/install/hst-install-$type.sh
9090
if [ "$?" -eq '0' ]; then
9191
bash hst-install-$type.sh $*
9292
exit

0 commit comments

Comments
 (0)