diff options
author | Patrick Spek <p.spek@tyil.nl> | 2022-04-08 09:13:20 +0200 |
---|---|---|
committer | Patrick Spek <p.spek@tyil.nl> | 2022-04-08 09:19:28 +0200 |
commit | 59da46b132574e831915230b507d00d5c01dbc84 (patch) | |
tree | 7c3dae243bb5a05e9472c870f77f9bacc864b04c | |
parent | a5624787624a312d2f238f6c62a7e59d5c491086 (diff) | |
download | rakudo-star-59da46b132574e831915230b507d00d5c01dbc84.tar.gz rakudo-star-59da46b132574e831915230b507d00d5c01dbc84.tar.bz2 |
Also clean up symlinks
-rw-r--r-- | lib/actions/clean.bash | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/actions/clean.bash b/lib/actions/clean.bash index bb5d984..c58a36c 100644 --- a/lib/actions/clean.bash +++ b/lib/actions/clean.bash @@ -20,6 +20,7 @@ action() { shift $(( OPTIND - 1 )) find "$BASEDIR/bin" ! -name rstar -type f -exec rm -f {} + + find "$BASEDIR/bin" ! -name rstar -type l -exec rm -f {} + rm -fr -- "$BASEDIR/dist" rm -fr -- "$BASEDIR/include" rm -fr -- "$BASEDIR/lib/libmoar.so" |