diff options
| author | Joshua Boniface <joshua@boniface.me> | 2019-01-19 01:22:41 -0500 |
|---|---|---|
| committer | Joshua Boniface <joshua@boniface.me> | 2019-01-19 18:10:54 -0500 |
| commit | f952988fb34a266b64953b23db6c76ad2777dc4a (patch) | |
| tree | 16385f5fe4aa23ced4192cf3d807321aa485b974 /deployment/make.sh | |
| parent | d42ef36bf9957d95e0594b5fdc843ead6ea54433 (diff) | |
Add new centralized build script and README
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 |
