Excluding Git history

Comparing all Git files on every action takes up time and I’m assuming people don’t need the Git history to be available on their FTP server
This commit is contained in:
Thijs Niks 2019-11-14 16:21:14 -08:00
parent 4cd0cd03d0
commit 12afc55717
1 changed files with 1 additions and 1 deletions

View File

@ -2,4 +2,4 @@
set -e
lftp $INPUT_HOST -u $INPUT_USER,$INPUT_PASSWORD -e "set ssl:verify-certificate false; mirror -R $INPUT_LOCALDIR $INPUT_REMOTEDIR; quit"
lftp $INPUT_HOST -u $INPUT_USER,$INPUT_PASSWORD -e "set ssl:verify-certificate false; mirror -R -x ^\.git/$ $INPUT_LOCALDIR $INPUT_REMOTEDIR; quit"