aboutsummaryrefslogtreecommitdiff
path: root/lib/actions/clean.bash
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2022-04-08 09:13:20 +0200
committerPatrick Spek <p.spek@tyil.nl>2022-04-08 09:19:28 +0200
commit59da46b132574e831915230b507d00d5c01dbc84 (patch)
tree7c3dae243bb5a05e9472c870f77f9bacc864b04c /lib/actions/clean.bash
parenta5624787624a312d2f238f6c62a7e59d5c491086 (diff)
Also clean up symlinks
Diffstat (limited to 'lib/actions/clean.bash')
-rw-r--r--lib/actions/clean.bash1
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"