diff options
author | dweller <dweller@cabin.digital> | 2024-03-18 05:12:34 +0200 |
---|---|---|
committer | dweller <dweller@cabin.digital> | 2024-03-18 05:12:34 +0200 |
commit | 2a52e556a604ff0f89b00209ce9c4f581b14dc2d (patch) | |
tree | f4c23abce9821e4dd200daee628eff5d9c0b61b2 /git-shell-commands | |
parent | b0a643b0f6331b0e129e178b8a36a6776ed344ab (diff) |
Diffstat (limited to 'git-shell-commands')
-rwxr-xr-x | git-shell-commands/mkrepo | 2 | ||||
-rwxr-xr-x | git-shell-commands/setdesc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/git-shell-commands/mkrepo b/git-shell-commands/mkrepo index 94c3912..ecadb00 100755 --- a/git-shell-commands/mkrepo +++ b/git-shell-commands/mkrepo @@ -13,7 +13,7 @@ set -e PREFIX="$HOME/repos" if [ $# -lt 1 ]; then - echo "Usage: $(basename $0) <repo name> [description]" + echo "Usage: $(basename "$0") <repo name> [description]" exit 1; fi diff --git a/git-shell-commands/setdesc b/git-shell-commands/setdesc index 651b170..341097b 100755 --- a/git-shell-commands/setdesc +++ b/git-shell-commands/setdesc @@ -13,7 +13,7 @@ set -e PREFIX="$HOME/repos" if [ $# -lt 2 ]; then - echo "Usage: $(basename $0) <repo name> <description>" + echo "Usage: $(basename "$0") <repo name> <description>" exit 1; fi |