Skip to content

Commit 7b4559c

Browse files
committed
fix: install script
1 parent 682b45a commit 7b4559c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

other/nightly/install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ set -e # Exit immediately if a command exits with a non-zero status
55
## $1 could be empty, so we need to disable this check
66
#set -u # Treat unset variables as an error and exit
77
set -o pipefail # Cause a pipeline to return the status of the last command that exited with a non-zero status
8+
CDN="https://cdn.coollabs.io/coolify-nightly"
89
DATE=$(date +"%Y%m%d-%H%M%S")
910

1011
VERSION="1.5"
@@ -28,7 +29,6 @@ getAJoke() {
2829
echo -e "$JOKES\n"
2930
fi
3031
}
31-
CDN="https://cdn.coollabs.io/coolify-nightly"
3232
OS_TYPE=$(grep -w "ID" /etc/os-release | cut -d "=" -f 2 | tr -d '"')
3333
ENV_FILE="/data/coolify/source/.env"
3434

@@ -505,5 +505,5 @@ echo -e "\033[0;35m
505505
\033[0m"
506506
echo -e "\nYour instance is ready to use."
507507
echo -e "Please visit http://$(curl -4s https://ifconfig.io):8000 to get started.\n"
508-
echo -e "WARNING: We recommend you backup your /data/coolify/source/.env file to a safe location, outside of this server."
508+
echo -e "WARNING: We recommend you to backup your /data/coolify/source/.env file to a safe location, outside of this server."
509509
cp /data/coolify/source/.env /data/coolify/source/.env.backup

scripts/install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ set -e # Exit immediately if a command exits with a non-zero status
55
## $1 could be empty, so we need to disable this check
66
#set -u # Treat unset variables as an error and exit
77
set -o pipefail # Cause a pipeline to return the status of the last command that exited with a non-zero status
8+
CDN="https://cdn.coollabs.io/coolify"
89
DATE=$(date +"%Y%m%d-%H%M%S")
910

1011
VERSION="1.5"
@@ -28,7 +29,6 @@ getAJoke() {
2829
echo -e "$JOKES\n"
2930
fi
3031
}
31-
CDN="https://cdn.coollabs.io/coolify"
3232
OS_TYPE=$(grep -w "ID" /etc/os-release | cut -d "=" -f 2 | tr -d '"')
3333
ENV_FILE="/data/coolify/source/.env"
3434

@@ -505,5 +505,5 @@ echo -e "\033[0;35m
505505
\033[0m"
506506
echo -e "\nYour instance is ready to use."
507507
echo -e "Please visit http://$(curl -4s https://ifconfig.io):8000 to get started.\n"
508-
echo -e "WARNING: We recommend you backup your /data/coolify/source/.env file to a safe location, outside of this server."
508+
echo -e "WARNING: We recommend you to backup your /data/coolify/source/.env file to a safe location, outside of this server."
509509
cp /data/coolify/source/.env /data/coolify/source/.env.backup

0 commit comments

Comments
 (0)