Minor fixes

- Fix typo in make.sh
- Invoke make.sh correctly in .gitlab-ci.yml
This commit is contained in:
jdgleaver 2022-01-21 10:23:00 +00:00
parent 1aeed93866
commit 56576b4bc3
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ stages:
MEDIA_PATH: .media
script:
- mkdir -p ${MEDIA_PATH}/${CI_PROJECT_NAME}
- /bin/bash make.sh
- ./make.sh
- cp out/.index ${MEDIA_PATH}/${CI_PROJECT_NAME}
- cp out/*.zip ${MEDIA_PATH}/${CI_PROJECT_NAME}
artifacts:

View File

@ -12,7 +12,7 @@ do
if [[ $? -ne 0 ]]
then
echo "script failed: $BUILD_SCRIPT"
return 1
exit 1
fi
done