From 13b58615f9811aea8d2b278925e60001f594c7aa Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Mon, 14 Apr 2025 11:47:10 +0200 Subject: pkgs/git-cm: Migrate to `writeShellApplication` and remove default `--verbose` --- pkgs/by-name/gi/git-cm/git-cm.sh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'pkgs/by-name/gi/git-cm/git-cm.sh') diff --git a/pkgs/by-name/gi/git-cm/git-cm.sh b/pkgs/by-name/gi/git-cm/git-cm.sh index 2204e4d6..1eb46730 100755 --- a/pkgs/by-name/gi/git-cm/git-cm.sh +++ b/pkgs/by-name/gi/git-cm/git-cm.sh @@ -1,8 +1,5 @@ #!/usr/bin/env dash -# shellcheck source=/dev/null -SHELL_LIBRARY_VERSION="2.1.2" . %SHELL_LIBRARY_PATH - ROOT="$(git rev-parse --show-toplevel)" # Take first line from previous commit @@ -13,6 +10,6 @@ else fi sed '1d' "$(git config commit.template)" >>"$ROOT/.git/COMMIT_TEMPLATE" -git commit --template "$ROOT/.git/COMMIT_TEMPLATE" --verbose "$@" +git commit --template "$ROOT/.git/COMMIT_TEMPLATE" "$@" # vim: ft=sh -- cgit 1.4.1