From fcbb1d1603a58ff1794cbb5829be7b1675eb0103 Mon Sep 17 00:00:00 2001 From: Tylen Wells Date: Tue, 1 Jul 2025 16:51:21 -0700 Subject: [PATCH] update man --- main.go | 7 +++++++ test_e2e.sh | 3 ++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/main.go b/main.go index 75f4746..4bd328e 100644 --- a/main.go +++ b/main.go @@ -2574,6 +2574,13 @@ OPTIONS -?, -h, --help Print help text and exit. + --hooks-async, $GITSYNC_HOOKS_ASYNC + Whether to run the --exechook-command asynchronously. + + --hooks-before-symlink, $GITSYNC_HOOKS_BEFORE_SYMLINK + Whether to run the --exechook-command before updating the symlink. Use in combination with --hooks-async set + to false if you need the hook to finish before the symlink is updated. + --http-bind , $GITSYNC_HTTP_BIND The bind address (including port) for git-sync's HTTP endpoint. The '/' URL of this endpoint is suitable for Kubernetes startup and diff --git a/test_e2e.sh b/test_e2e.sh index 9331d40..56cf3af 100755 --- a/test_e2e.sh +++ b/test_e2e.sh @@ -3846,7 +3846,8 @@ for t; do fi remove_containers || true run=$((run+1)) - done if [[ "$test_ret" != 0 ]]; then + done + if [[ "$test_ret" != 0 ]]; then final_ret=1 failures+=("$t (log: ${log}.*)") fi