clean (267B)
1 #!/bin/sh 2 set -x 3 case $0 in (*/*) cd "${0%/*}" || exit $?;; esac 4 rm -rf boot-image sabotage-image local || exit $? 5 ( 6 cd sabotage && 7 git clean -xf && 8 git checkout . 9 ) || exit $? 10 ( 11 cd musl-cross-make && 12 make clean && 13 git clean -xf && 14 git checkout . 15 ) || exit $?