forked from p15670423/monkey
10 lines
285 B
Bash
Executable File
10 lines
285 B
Bash
Executable File
#!/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.
|
|
|
|
rm -rf "$HOME/.monkey_island"
|
|
rm -rf "$HOME/squashfs-root"
|
|
rm -rf "$HOME/git/monkey"
|
|
rm "$HOME/appimage/Infection_Monkey-x86_64.AppImage"
|