2021-04-16 21:53:11 +08:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# This is a utility script to clean up after a failed or successful AppImage build
|
|
|
|
# in order to speed up development and debugging.
|
|
|
|
|
2021-07-28 02:04:35 +08:00
|
|
|
APPIMAGE_DIR="$(realpath $(dirname $BASH_SOURCE[0]))"
|
|
|
|
|
2021-04-16 21:53:11 +08:00
|
|
|
rm -rf "$HOME/git/monkey"
|
2021-07-28 02:04:35 +08:00
|
|
|
rm -rf "$HOME/.monkey_island"
|
|
|
|
rm -rf "$APPIMAGE_DIR/squashfs-root"
|
2021-10-18 21:06:04 +08:00
|
|
|
rm "$APPIMAGE_DIR"/Infection_Monkey*.AppImage
|
|
|
|
rm "$APPIMAGE_DIR/../dist/InfectionMonkey*.AppImage"
|