add the scripts
This commit is contained in:
parent
26501f220e
commit
fcecf1a04b
12 changed files with 490 additions and 0 deletions
17
cloakcatcher/Makefile
Executable file
17
cloakcatcher/Makefile
Executable file
|
|
@ -0,0 +1,17 @@
|
|||
all_linux:
|
||||
|
||||
sudo apt install python3 python3-requests python3-pip -y
|
||||
pip3 install pyinstaller --break-system-packages
|
||||
python3 -m PyInstaller -F -n"CloakCatcher" main.py
|
||||
mkdir -p bin/
|
||||
mv -f dist/CloakCatcher bin/
|
||||
cp -f cloakcatcher.conf bin/
|
||||
|
||||
clean:
|
||||
|
||||
rm -rf dist/ build/ __pycache__/ CloakCatcher.spec
|
||||
|
||||
reset:
|
||||
|
||||
rm -rf bin/
|
||||
echo "" > cloakcatcher.conf
|
||||
Loading…
Add table
Add a link
Reference in a new issue