Files
stationeers_lang/clean.sh

19 lines
206 B
Bash
Executable File

echo "Cleaning build directories"
CSHARP_DIR="csharp_mod"
RUST_DIR="rust_compiler"
cd "$CSHARP_DIR"
dotnet clean
cd ..
cd "$RUST_DIR"
cargo clean
cd ..
if [[ -d "release" ]]; then
rm -rd release
fi