diff options
Diffstat (limited to 'pkg/bundle_from_docker')
-rw-r--r-- | pkg/bundle_from_docker | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/pkg/bundle_from_docker b/pkg/bundle_from_docker new file mode 100644 index 00000000..1d87b4e1 --- /dev/null +++ b/pkg/bundle_from_docker @@ -0,0 +1,24 @@ +# This script gets executed inside the docker-bundler-apt image. +# (no virtualenv, so all the dependencies must be already installed in the image). + +: ${REPO:="https://github.com/leapcode/bitmask-dev"} +: ${BRANCH:="master"} + +cd /src/leap/bitmask-dev +RELEASE=bitmask-`cat pkg/next-version` +cd $HOME +echo "[+] CLONING REPO from $REPO [$BRANCH]" +git clone $REPO bitmaskbuild +cd bitmaskbuild +git checkout $BRANCH +git fetch --tags + +pip uninstall --yes leap.bitmask +pip install -e . + +mkdir -p dist/ + +VIRTUAL_ENV=/usr/local make bundle_linux +cp -r dist/* /dist + +echo "[+] DONE" |