mirror of
https://github.com/mas-cli/mas
synced 2024-11-22 11:33:13 +00:00
18 lines
230 B
Bash
Executable file
18 lines
230 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 Carthage/Build
|
|
rm -rf ${BUILD_DIR:?}
|
|
rm -rf ${INSTALL_DIR:?}
|
|
}
|
|
|
|
main
|