aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Zinoviev <me@ch1p.io>2022-07-09 23:23:08 +0300
committerEvgeny Zinoviev <me@ch1p.io>2022-07-09 23:23:08 +0300
commit9753101cd2b16082624a1f8712f74b1c6df47763 (patch)
tree734cf752f9f361a4e1815993817a3f487f6a2f58
parent84c11b270318f7092c6ae52679a9aeb4f513def0 (diff)
deploy: skip *.sql files when rsyncing
-rwxr-xr-xdeploy.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/deploy.sh b/deploy.sh
index e30c423..a64c174 100755
--- a/deploy.sh
+++ b/deploy.sh
@@ -38,4 +38,5 @@ rsync -a --delete --delete-excluded --info=progress2 "$STAGING_DIR/" "$PROD_DIR/
--exclude='/composer.*' \
--exclude='/htdocs/scss' \
--exclude='/htdocs/sass.php' \
- --exclude='*.sh'
+ --exclude='*.sh' \
+ --exclude='*.sql'