diff options
author | Tomás Touceda <chiiph@leap.se> | 2013-09-24 14:15:44 -0300 |
---|---|---|
committer | Tomás Touceda <chiiph@leap.se> | 2013-09-24 14:15:44 -0300 |
commit | 0f71a0ec0bc15887ffce2a089c8f37c575c9b8e2 (patch) | |
tree | 0a3dafb1f99abafeb5faf3550ca0283af88bbf88 /pkg | |
parent | 02d04729f36c96f687187cc099483fa2856a289d (diff) | |
parent | 267ddfb3190a11b3034a42da4f75e0b380a413c6 (diff) |
Merge remote-tracking branch 'ivan/feature/improve-release-doc-script' into develop
Diffstat (limited to 'pkg')
-rwxr-xr-x | pkg/linux/build_bundle.sh | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/pkg/linux/build_bundle.sh b/pkg/linux/build_bundle.sh index 520ff256..60151a80 100755 --- a/pkg/linux/build_bundle.sh +++ b/pkg/linux/build_bundle.sh @@ -34,16 +34,18 @@ BITMASK_BIN=$TEMPLATE_BUNDLE/bitmask BUNDLE_NAME=Bitmask-linux$ARCH-$VERSION # clean template -rm $TEMPLATE_BUNDLE/CHANGELOG -rm $TEMPLATE_BUNDLE/relnotes.txt +rm -f $TEMPLATE_BUNDLE/CHANGELOG +rm -f $TEMPLATE_BUNDLE/relnotes.txt rm -rf $TEMPLATE_BUNDLE/apps/leap rm -rf $TEMPLATE_BUNDLE/lib/leap/{common,keymanager,soledad,mail} # checkout the latest tag in all repos for repo in $REPOSITORIES; do cd $REPOS_ROOT/$repo - git fetch - # checkout to the latest annotated tag, supress 'detached head' warning + git checkout master + git pull --ff-only origin master && git fetch + git reset --hard origin/master # this avoids problems if you are in a commit far in the past + # checkout to the closest annotated tag, supress 'detached head' warning git checkout --quiet `git describe --abbrev=0` done @@ -82,7 +84,7 @@ cp src/launcher $BITMASK_BIN # copy launcher.py to template bundle # e.g. TEMPLATE_BUNDLE/Bitmask.app/Contents/MacOS/apps/ -cd $REPOS_ROOT/bitmask_client_launcher/src/ +cd $REPOS_ROOT/bitmask_launcher/src/ cp launcher.py $TEMPLATE_BUNDLE/apps/ # copy relnotes, joint changelog and LICENSE to TEMPLATE_BUNDLE |