mirror of
https://github.com/ziirish/burp-ui.git
synced 2026-05-21 06:45:24 -06:00
19 lines
326 B
Bash
Executable file
19 lines
326 B
Bash
Executable file
#!/bin/sh
|
|
|
|
pip install wheel
|
|
|
|
echo "building dist"
|
|
python setup.py sdist bdist_wheel bdist_egg
|
|
mkdir meta
|
|
cd pkgs
|
|
for pkg in *
|
|
do
|
|
[ "$pkg" = "burp-ui-tpl" -o -f "$pkg" ] && continue
|
|
cd $pkg
|
|
python setup.py sdist bdist_wheel bdist_egg
|
|
find dist -type f -exec cp "{}" ../../meta/ \;
|
|
cd ..
|
|
done
|
|
cd ..
|
|
|
|
exit 0
|