summary refs log tree commit diff
diff options
context:
space:
mode:
authorDruid520 <r.ustydruid520@proton.me>2026-08-04 21:34:12 -0700
committerDruid520 <r.ustydruid520@proton.me>2026-08-04 21:34:12 -0700
commit5ee26a51d6b3a48e1e8d91746b7ea27c5d0df142 (patch)
treecbd8bf1455a67d475e6a0a63eafe065b68c8e45f
parenta7d298ebc451bfe50eca8af49d9255e03851b921 (diff)
MOD: add punctioation HEAD trunk
-rwxr-xr-xmk.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/mk.sh b/mk.sh index 9c876e2..da38c87 100755 --- a/mk.sh +++ b/mk.sh
@@ -2,7 +2,7 @@
2set -e 2set -e
3 3
4if [ $# -ne 2 ]; then 4if [ $# -ne 2 ]; then
5 echo "err: bad usage" >&2 5 echo "err: bad usage." >&2
6 exit 2 6 exit 2
7fi 7fi
8 8
@@ -12,7 +12,7 @@ script="$1/$mk/$2.sh"
12if [ -f "$script" ]; then 12if [ -f "$script" ]; then
13 (cd "$1" && sh "$mk/$2.sh") 13 (cd "$1" && sh "$mk/$2.sh")
14else 14else
15 echo "err: no such file/dir" >&2 15 echo "err: no such file/dir." >&2
16 exit 1 16 exit 1
17fi 17fi
18 18