Skip to content
This repository was archived by the owner on Mar 7, 2025. It is now read-only.

Commit 2d221a5

Browse files
author
David Neudorfer
committed
fix deploy.sh: don't delete local.ini config
1 parent 00d1c9b commit 2d221a5

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

scripts/deploy.sh

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,13 @@ else
2828
fi
2929

3030
# rsync files to server and respective environment path
31-
rsync -arvz --delete --progress . \
32-
--exclude='.git/' \
33-
-e "ssh -o StrictHostKeyChecking=no \
34-
-o UserKnownHostsFile=/dev/null \
35-
-i mozart_rsa" \
31+
rsync -arvz --delete \
32+
--exclude local.ini \
33+
--exclude='.git/' \
34+
--progress . \
35+
-e "ssh -o StrictHostKeyChecking=no \
36+
-o UserKnownHostsFile=/dev/null \
37+
-i mozart_rsa" \
3638
$DEPLOY_USER@$HOST:$BASE_DIR-$ENV
3739

3840
# find the live environment

0 commit comments

Comments
 (0)