mas/script/clean
2018-07-04 19:55:28 -06:00

9 lines
71 B
Bash
Executable file

#!/bin/bash -e
BUILD_DIR=build
main() {
rm -rf $BUILD_DIR/
}
main