Build: Remove Userland/qs if we see one lying around.

Userland/qs was moved to Applications/QuickShow, but some people still have
old built binaries lying around in their Userland/ directories and the build
system complains about this. Here goes a silly temporary hack to just get
rid of them.
This commit is contained in:
Andreas Kling 2019-07-01 14:32:06 +02:00
parent 2daf89e2f7
commit 24c0aae34e
Notes: sideshowbarker 2024-07-19 13:24:57 +09:00

View File

@ -2,6 +2,9 @@
set -e
# HACK: Get rid of old "qs" binaries still lying around from before it was renamed.
rm -f ../Userland/qs
die() {
echo "die: $@"
exit 1