From b7833c928a7a6b27b009c6848bc15736a17cacb6 Mon Sep 17 00:00:00 2001 From: Jan Lindemann Date: Tue, 18 Nov 2025 21:12:54 +0100 Subject: [PATCH] pgit.sh fix: --create-remote-user-repos parsed incorrectly --create-remote-user-repos is not recognized because of is not recognized because of a typo, fix that. Signed-off-by: Jan Lindemann --- scripts/pgit.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/pgit.sh b/scripts/pgit.sh index d81a70ed..cbb5c210 100644 --- a/scripts/pgit.sh +++ b/scripts/pgit.sh @@ -120,7 +120,7 @@ clone() local git_srv_admin="$SSH $login@git.janware.com /opt/jw-build/bin/git-srv-admin.sh" local opts - opts=$(getopt -o C --long create-remote-user-repo -n clone -- "$@") || fatal "Failed to parse options $@" + opts=$(getopt -o C --long create-remote-user-repos -n clone -- "$@") || fatal "Failed to parse options $@" eval set -- "$opts" while [ "$1" != -- ]; do case "$1" in