From 5ae2dde608d4a9a6c3d46d1efe7500c8c1472909 Mon Sep 17 00:00:00 2001 From: Jan Lindemann Date: Tue, 7 Apr 2026 13:37:08 +0200 Subject: [PATCH] pgit.sh list-repos with --interactive false pgit.sh list-repos runs jw-pkg.py projects list-repos. Interactivity hurts here, turn it off. Signed-off-by: Jan Lindemann --- scripts/pgit.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/pgit.sh b/scripts/pgit.sh index 81874eba..a6cb8e27 100644 --- a/scripts/pgit.sh +++ b/scripts/pgit.sh @@ -197,7 +197,7 @@ cmd_get() local projects="$PGIT_SH_PROJECTS" local ignore="$PGIT_IGNORE" local this_dir="${0%/*}" - local jw_projects="/usr/bin/python3 $this_dir/jw-pkg.py" + local jw_pkg="/usr/bin/python3 $this_dir/jw-pkg.py" local create_remote_user_repos=false local long_opts="create-remote-user-repos" local refspec_arg refspec=() @@ -228,7 +228,7 @@ cmd_get() [ "$from_user" ] || from_user=$whoami if [ -z "$projects" ]; then - projects=`$jw_projects projects list-repos --from-owner $from_user $remote_base` + projects=`$jw_pkg --interactive false projects list-repos --from-owner $from_user $remote_base` [ "$?" != 0 ] && fatal "Failed to enumerate repositories" fi