Add a comment regarding file cleanup

This commit is contained in:
Ayush Dwivedi
2019-03-03 23:28:46 +05:30
committed by GitHub
parent 2533a1f44f
commit c0ae4f26d6

View File

@@ -27,7 +27,10 @@ pyinstaller --noconfirm \
# Get out of the virtual environment
deactivate
# Rearrangement and cleanup of files and directories
# Rearrangement and cleanup of files and directories.
# NOTE: Comment everything beyond this point if you don't want the source
# code to be removed. Check chaos/dist/ in this case for the directory
# containing the executable.
cleanup () {
rm -rf chaos \
chaos-build-env \
@@ -46,4 +49,4 @@ if [[ $(pwd) -ef "$basedir" ]]; then
cleanup
else
exit 1
fi
fi