From d00f8fb1791e6f412d4a8898b53cdbe3cac20daa Mon Sep 17 00:00:00 2001 From: "quentin@aristote.fr" Date: Sun, 25 Jan 2026 20:19:01 +0100 Subject: git: add shell-commands --- config/services/git/shell-commands/repo/src/remove_command.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 config/services/git/shell-commands/repo/src/remove_command.sh (limited to 'config/services/git/shell-commands/repo/src/remove_command.sh') diff --git a/config/services/git/shell-commands/repo/src/remove_command.sh b/config/services/git/shell-commands/repo/src/remove_command.sh new file mode 100644 index 0000000..b45406f --- /dev/null +++ b/config/services/git/shell-commands/repo/src/remove_command.sh @@ -0,0 +1,10 @@ +path=$(realpath "${args[path]}") + +check-realpath "$path" + +if [[ $(is-git-dir "$path") ]] +then + rm --recursive "$path" +else + rm --dir "$path" +fi -- cgit v1.2.3