Renamed main script to be more correct for what it does.

This commit is contained in:
Erwin de Haan 2019-01-12 03:07:16 +01:00
parent 4b00b0cc87
commit 2c62f8dbd5
1 changed files with 6 additions and 1 deletions

View File

@ -7,7 +7,9 @@ pushd ../Jellyfin.Versioning
#./update-version
popd
# Execute all build.sh and package.sh and sign.sh scripts in every folder. In that order. Script should check for artifacts themselves.
#TODO enabled proper flag parsing for enabling and disabling building, signing, packaging and publishing
# Execute all build.sh, package.sh, sign.sh and publish.sh scripts in every folder. In that order. Script should check for artifacts themselves.
echo "Running for platforms '$@'."
for directory in */ ; do
platform=`basename "${directory}"`
@ -23,6 +25,9 @@ for directory in */ ; do
if [ -f sign.sh ]; then
./sign.sh
fi
if [ -f publish.sh ]; then
./publish.sh
fi
popd
else
echo "Skipping $platform."