Files
OpenSuperClone/clean.sh
T
2022-12-26 12:55:22 +01:00

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."