From 992d8233c9dd7307fd2a5f1be24e55509e0f10c3 Mon Sep 17 00:00:00 2001 From: Joe Testa Date: Thu, 26 Aug 2021 10:47:43 -0400 Subject: [PATCH] Remove cache files created during build. --- build_windows_executable.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build_windows_executable.sh b/build_windows_executable.sh index 73528e3..93d794e 100755 --- a/build_windows_executable.sh +++ b/build_windows_executable.sh @@ -120,8 +120,8 @@ if [[ $? == 0 ]]; then exit 1 fi -# Remove the link we created, above. -rm ssh-audit.py +# Remove the cache files created during the build process, along with the link we created, above. +rm -rf build/ ssh-audit.spec ssh-audit.py # Reset the changes we made to globals.py. git checkout globals.py 2> /dev/null