aboutsummaryrefslogtreecommitdiff
path: root/.local/share/bin
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-09-25 17:39:29 +0200
committerLoek Le Blansch <loek@pipeframe.xyz>2024-09-25 17:39:29 +0200
commit98056aae8e2a96a87ed853f02ce3e4d722da2b8c (patch)
tree7d10db5030ea9abe471a54b8d9e125f6924ccf2b /.local/share/bin
parent10b5caed980eea277603c5a8aab26963445eb9a6 (diff)
small changes
Diffstat (limited to '.local/share/bin')
-rwxr-xr-x.local/share/bin/mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/.local/share/bin/mk b/.local/share/bin/mk
index 2a046d6..c9c2e5b 100755
--- a/.local/share/bin/mk
+++ b/.local/share/bin/mk
@@ -18,7 +18,7 @@ mode_cmake() {
cmake --log-level WARNING -B "$builddir" -G Ninja
fi
- exec ninja -C "$builddir" "$@"
+ cd "$builddir" && exec ninja "$@"
}
[ -e "CMakeLists.txt" ] && mode_cmake "$@"