Removed redundant install script

recovery-function
Jef Roosens 2021-01-15 21:10:37 +01:00
parent 44764d30d9
commit ad3f49a785
1 changed files with 0 additions and 14 deletions

View File

@ -1,14 +0,0 @@
#!/usr/bin/env sh
# Zip app
(cd app && zip -r ../app.zip * -x "__pycache__/*" "**/__pycache__/*" ".vim/*" "**/.vim/*")
# Add shebang to top of file
echo "#!/usr/bin/env python3" | cat - app.zip > backup_tool
chmod a+x backup_tool
# Move executable over
mv backup_tool /usr/local/bin
# Remove zip
rm app.zip