Files
quantum-utils/clean-all.sh
Wesley Irvin 0f0ecf0307 Build Script Tweaks
Changed location of the /build directory to be in the root to make for
easier cleaning of project. Added in a clean-all.sh script as well to
clean everything.

Clean Script

Added in a way to clean the build environment as well.
2024-02-04 13:49:39 -05:00

11 lines
137 B
Bash
Executable File

#!/bin/bash
# Clean up paths if they exist
if [[ -d "./build/" ]]; then
rm -rf ./build
fi
if [[ -d "./bin/" ]]; then
rm -rf ./bin
fi