Some small updates

This commit is contained in:
2020-05-02 01:51:54 -05:00
parent db48988a5d
commit 30cec1a77e
4 changed files with 35 additions and 22 deletions

13
cleanup.sh Executable file
View File

@@ -0,0 +1,13 @@
#!/bin/bash
. CONFIG.sh
# set -o xtrace ## To debug scripts
# set -o errexit ## To exit on error
# set -o errunset ## To exit if a variable is referenced but not set
function main() {
sudo rm -rf image/ work/
}
main $@;