From a784e7a10cf9975f31f8db0a46291cf236c403d9 Mon Sep 17 00:00:00 2001 From: shockrah Date: Mon, 8 Feb 2021 19:33:12 -0800 Subject: [PATCH] Fixing multiline issue in neocities deployment job --- .gitignore | 1 + .gitlab-ci.yml | 10 +++++----- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 9da127f..b297590 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ tmp/ .env .mirror keys/ +*.bin diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c31d705..1efc1db 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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