diff options
| author | Andrew Rabert <6550543+nvllsvm@users.noreply.github.com> | 2019-01-20 20:45:06 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-01-20 20:45:06 -0500 |
| commit | c7f648f86a543c889a92a15f9d8d1f95d28987c8 (patch) | |
| tree | cadac43ca42a70a126084e1508fba0b8c4f4fce3 /deployment/make.sh | |
| parent | 7e4cc9f513ff583e7a8ecf596e61d33dd9ce41d9 (diff) | |
| parent | 803bf563d74754139ff92810364262e3181e399d (diff) | |
Merge branch 'dev' into imagesize
Diffstat (limited to 'deployment/make.sh')
| -rwxr-xr-x | deployment/make.sh | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/deployment/make.sh b/deployment/make.sh deleted file mode 100755 index 6b8d8de08..000000000 --- a/deployment/make.sh +++ /dev/null @@ -1,34 +0,0 @@ -#!/usr/bin/env bash - -git submodule update --init --recursive - -pushd ../Jellyfin.Versioning -./update-version -popd - -#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}"` - if [[ $@ == *"$platform"* || $@ = *"all"* ]]; then - echo "Processing ${platform}" - pushd "$platform" - if [ -f build.sh ]; then - ./build.sh - fi - if [ -f package.sh ]; then - ./package.sh - fi - if [ -f sign.sh ]; then - ./sign.sh - fi - if [ -f publish.sh ]; then - ./publish.sh - fi - popd - else - echo "Skipping $platform." - fi -done |
