Files
OpenSuperClone/clean.sh
T
Julian Frohmüller 708142dd72 Minor changes.
2022-12-05 10:10:25 +01:00

21 lines
226 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."