mas/script/clean
2019-01-18 21:37:51 -07:00

17 lines
206 B
Bash
Executable file

#!/bin/bash -e
#
# script/clean
# mas
#
# Deletes the build and temp install directories.
#
BUILD_DIR=build
INSTALL_DIR=/tmp/mas-cli.dst
main() {
rm -rf ${BUILD_DIR:?}
rm -rf ${INSTALL_DIR:?}
}
main