📝 Added new scripts, aliases, etc.

This commit is contained in:
z3rOR0ne 2023-06-20 01:11:01 -07:00
parent f67d7b627e
commit 99dac59d82
5 changed files with 76 additions and 0 deletions

8
scripts/uglify Executable file
View file

@ -0,0 +1,8 @@
#!/usr/bin/env bash
if [[ -d "dist_bak" ]]; then
sudo rm -r dist
mv dist_bak dist
else
echo "no dist_bak directory"
fi