Skip to content

Commit

Permalink
tarball generation
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre Tardy committed Jun 27, 2015
1 parent 36fd85c commit 5a5ed84
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions common/maketarballs.sh
@@ -0,0 +1,15 @@
#!/bin/bash
find . -name VERSION -exec rm {} \;
rm -rf dist
mkdir dist
for pkg in pkg master slave pkg www/base www/console_view www/waterfall_view
do
pip install -e ${pkg}
(
cd ${pkg}
rm -rf dist
python setup.py sdist
)
cp ${pkg}/dist/* dist/
pip wheel ${pkg} -w dist
done

0 comments on commit 5a5ed84

Please sign in to comment.