From ad58364e189d90284e8bc888ec1bf1b555768c47 Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Sun, 31 Aug 2025 18:27:09 +0100 Subject: mk: simplify the main script check it's still not perfect, but now it's unambiguous. the previous generic check was written based on the fact that xbmk's main script used to also be called via several symlinks, which is no longer the case. Signed-off-by: Leah Rowe --- mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mk b/mk index 8da15f5b..872ce264 100755 --- a/mk +++ b/mk @@ -5,7 +5,7 @@ set -u -e -if [ "./${0##*/}" != "${0}" ] || [ ! -f "mk" ] || [ -L "mk" ]; then +if [ "$0" != "./mk" ]; then printf "You must run this in the proper work directory.\n" 1>&2 exit 1 fi -- cgit v1.2.1