mas/script/clean

18 lines
206 B
Text
Raw Normal View History

2015-09-20 11:23:36 +01:00
#!/bin/bash -e
#
# script/clean
# mas
#
# Deletes the build and temp install directories.
#
2015-09-20 11:23:36 +01:00
BUILD_DIR=build
2018-10-15 22:17:07 -06:00
INSTALL_DIR=/tmp/mas-cli.dst
2015-09-20 11:23:36 +01:00
main() {
2018-10-15 22:17:07 -06:00
rm -rf ${BUILD_DIR:?}
rm -rf ${INSTALL_DIR:?}
2015-09-20 11:23:36 +01:00
}
main