mas/script/clean

19 lines
230 B
Text
Raw Normal View History

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