blob: 9669a87fddc42aa09883d5ad9155d6bed672ec44 (
plain)
1
2
3
4
5
6
7
8
9
10
|
: ${REPO:="https://github.com/leapcode/bitmask-dev"}
: ${BRANCH:="master"}
RELEASE=bitmask-`cat pkg/next-version`
echo "[+] CLONING REPO from $REPO [$BRANCH]"
git clone $REPO bitmaskbuild
cd bitmaskbuild
git checkout $BRANCH
mkdir -p dist/
pkg/build_bundle_with_venv.sh
|