Skip to content

Commit

Permalink
remove compiled csharp files during reset (#141)
Browse files Browse the repository at this point in the history
  • Loading branch information
Cx01N authored Jun 5, 2021
1 parent 9a2189b commit 7e4a4a7
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions setup/reset.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,14 @@ then
rm -rf ./downloads/
fi

# remove the compiled csharp folders
if [ -d ./csharp/Covenant/bin ]
then
rm -rf ./csharp/Covenant/bin
fi
if [ -d ./csharp/Covenant/obj ]
then
rm -rf ./csharp/Covenant/obj
fi

cd ../..

0 comments on commit 7e4a4a7

Please sign in to comment.