created a deployment script for packing bungloo packages
This commit is contained in:
parent
8c509ad6b5
commit
9c36ef3785
4 changed files with 54 additions and 3 deletions
14
Linux/deploy.sh
Executable file
14
Linux/deploy.sh
Executable file
|
@ -0,0 +1,14 @@
|
|||
#!/bin/bash
|
||||
|
||||
mkdir -p build
|
||||
mkdir -p build/bin
|
||||
mkdir -p build/bungloo
|
||||
touch build/bungloo/__init__.py
|
||||
|
||||
cp Bungloo.py build/bin/bungloo
|
||||
cp Helper.py Windows.py build/bungloo
|
||||
cp setup.py build/
|
||||
cp -r ../WebKit build/bungloo/
|
||||
cp -r ../images build/bungloo/
|
||||
|
||||
# eof
|
Reference in a new issue