Fixing multiline issue in neocities deployment job

This commit is contained in:
shockrah 2021-02-08 19:33:12 -08:00
parent 1101beac23
commit a784e7a10c
2 changed files with 6 additions and 5 deletions

1
.gitignore vendored
View File

@ -8,3 +8,4 @@ tmp/
.env .env
.mirror .mirror
keys/ keys/
*.bin

View File

@ -33,11 +33,11 @@ deploy-neocities:
# First the html # First the html
- bash upload.sh -h - bash upload.sh -h
# then we do the media files # then we do the media files
- > for file in $(find media);do - for file in $(find media);do \
if [ -f $file ];then if [ -f $file ];then \
bash upload.sh -m $file bash upload.sh -m $file \
fi fi \
done done