summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuben Pollan <meskio@sindominio.net>2014-10-08 09:34:01 -0500
committerRuben Pollan <meskio@sindominio.net>2014-10-08 09:34:01 -0500
commitca1ea27340f6dafbb641efcefe978326445239ec (patch)
tree1e1a0270efd7c4d6edeaeecfef9801ca806e7126
parent11eb19c088599933ba216d6e580591bb01eb9cb1 (diff)
parentec69c566dbfc5c50386cc42e7bb3958efb100bf8 (diff)
Merge branch 'ivan/feature/update-paths-for-leapcode-repo' into develop
-rwxr-xr-xcreatebundle.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/createbundle.sh b/createbundle.sh
index 9856d2a..825fb43 100755
--- a/createbundle.sh
+++ b/createbundle.sh
@@ -126,7 +126,7 @@ copy_binaries() {
create_bundler_paths() {
cd $BASE
cat > bundler.paths << EOF
-$BASE/bundler.git/bundler
+$BASE/bitmask_bundler.git/bundler
/usr/lib/python2.7
/usr/lib/python2.7/plat-linux2
/usr/lib/python2.7/lib-tk
@@ -142,7 +142,7 @@ EOF
setup_bundler() {
cd $BASE
- git clone https://github.com/chiiph/bundler.git bundler.git
+ git clone https://github.com/leapcode/bitmask_bundler.git bitmask_bundler.git
virtualenv bundler.venv && source bundler.venv/bin/activate
# install dependencies by hand...
@@ -153,7 +153,7 @@ setup_bundler() {
cd protobuf-socket-rpc.git
python setup.py easy_install -Z .
- pip install -r $BASE/bundler.git/pkg/requirements.pip
+ pip install -r $BASE/bitmask_bundler.git/pkg/requirements.pip
}
run_bundler() {
@@ -166,8 +166,8 @@ run_bundler() {
set_pyside_environment
mkdir bundler.output
- python bundler.git/bundler/main.py --workon bundler.output --binaries binaries/ --paths-file bundler.paths --do gitclone pythonsetup $VERSION
- python bundler.git/bundler/main.py --workon bundler.output --binaries binaries/ --paths-file bundler.paths --skip gitclone pythonsetup $VERSION
+ python bitmask_bundler.git/bundler/main.py --workon bundler.output --binaries binaries/ --paths-file bundler.paths --do gitclone pythonsetup $VERSION
+ python bitmask_bundler.git/bundler/main.py --workon bundler.output --binaries binaries/ --paths-file bundler.paths --skip gitclone pythonsetup $VERSION
}
[[ "$1" == 'nightly' ]] && VERSION='--nightly'