mirror of
https://github.com/ISpillMyDrink/OpenSuperClone.git
synced 2026-05-03 13:30:49 +00:00
22 lines
227 B
Bash
Executable File
22 lines
227 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "Cleaning up..."
|
|
|
|
if [ -d build ]; then
|
|
rm -rf build
|
|
fi
|
|
|
|
if [ -d Debug ]; then
|
|
rm -rf Debug
|
|
fi
|
|
|
|
if [ -d Release ]; then
|
|
rm -rf Release
|
|
fi
|
|
|
|
if [ -d package ]; then
|
|
rm -rf package
|
|
fi
|
|
|
|
echo "Done."
|