Skip to content

Commit 39015e7

Browse files
committed
Fix: Typo in install script
1 parent dfd6fdf commit 39015e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

other/nightly/install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -399,10 +399,10 @@ if [ ! -f ~/.ssh/authorized_keys ]; then
399399
fi
400400

401401
set +e
402-
IS_COOLIFY_VOLUME_EXISTS=$(docker volume ls | grep coolify-db | wc -l)
402+
IF_COOLIFY_VOLUME_EXISTS=$(docker volume ls | grep coolify-db | wc -l)
403403
set -e
404404

405-
if [ "$IS_COOLIFY_VOLUME_EXISTS" -eq 0 ]; then
405+
if [ "$IF_COOLIFY_VOLUME_EXISTS" -eq 0 ]; then
406406
echo " - Generating SSH key."
407407
ssh-keygen -t ed25519 -a 100 -f /data/coolify/ssh/keys/id.$CURRENT_USER@host.docker.internal -q -N "" -C coolify
408408
chown 9999 /data/coolify/ssh/keys/id.$CURRENT_USER@host.docker.internal

0 commit comments

Comments
 (0)