Austin Schuh | 272c613 | 2020-11-14 16:37:52 -0800 | [diff] [blame] | 1 | #!/bin/sh |
2 | |||||
3 | # Remove files and directory that are needed to build and run the .NET tests. | ||||
4 | # The script NetTest.sh installs these as needed. | ||||
5 | |||||
6 | [ -d .dotnet_tmp ] && rm -rf .dotnet_tmp | ||||
7 | [ -d packages ] && rm -rf packages | ||||
8 | [ -d .tmp ] && rm -rf .tmp | ||||
9 | [ -f nuget.exe ] && rm nuget.exe | ||||
10 | [ -f dotnet-intall.sh ] && rm dotnet-install.sh |