Created
December 3, 2024 10:08
-
-
Save sentient06/35662e72b75377a44944c7f5c66a0e19 to your computer and use it in GitHub Desktop.
Classic Macintosh Projects - Script for cleaning
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if [ $# -ne 1 ] ; then | |
echo "Syntax: $0 [project_name]" | |
exit 1 | |
fi | |
if [ ! -d "$1" ]; then | |
echo 'The specified folder does not exist' | |
exit 1 | |
fi | |
cd "$1" | |
rm -rf build |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment