diff --git a/install.sh b/install.sh deleted file mode 100755 index d846c29..0000000 --- a/install.sh +++ /dev/null @@ -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