Cat-Printer/build-common/0-bundle-all.sh
2022-04-22 01:14:40 +08:00

7 lines
192 B
Bash
Executable File

#!/bin/sh
for i in $(find | grep -E '.*\.pyc'); do rm $i; done
for i in $(find | grep -E '__pycache__'); do rm -d $i; done
python3 bundle.py $1
python3 bundle.py -w $1
python3 bundle.py -b $1