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
.mirror
keys/
*.bin

View File

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