diff options
Diffstat (limited to 'git-remote-testgit.sh')
-rwxr-xr-x | git-remote-testgit.sh | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/git-remote-testgit.sh b/git-remote-testgit.sh index b5289493e2..2109070d00 100755 --- a/git-remote-testgit.sh +++ b/git-remote-testgit.sh @@ -37,6 +37,7 @@ do echo "*import-marks $gitmarks" echo "*export-marks $gitmarks" fi + test -n "$GIT_REMOTE_TESTGIT_SIGNED_TAGS" && echo "signed-tags" echo ;; list) @@ -103,7 +104,12 @@ do *" $ref $a "*) continue ;; # unchanged esac - echo "ok $ref" + if test -z "$GIT_REMOTE_TESTGIT_PUSH_ERROR" + then + echo "ok $ref" + else + echo "error $ref $GIT_REMOTE_TESTGIT_PUSH_ERROR" + fi done echo |