mirror of
https://github.com/NaitLee/Cat-Printer.git
synced 2025-05-15 14:50:26 -07:00
8 lines
246 B
Bash
Executable File
8 lines
246 B
Bash
Executable File
#!/bin/sh
|
|
export version=`cat ../version`
|
|
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 $version
|
|
# python3 bundle.py -w $version
|
|
python3 bundle.py -b $version
|