mirror of
https://github.com/NaitLee/Cat-Printer.git
synced 2025-05-18 00:00:18 -07:00
7 lines
192 B
Bash
Executable File
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
|