File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -2574,6 +2574,13 @@ OPTIONS
2574
2574
-?, -h, --help
2575
2575
Print help text and exit.
2576
2576
2577
+ --hooks-async, $GITSYNC_HOOKS_ASYNC
2578
+ Whether to run the --exechook-command asynchronously.
2579
+
2580
+ --hooks-before-symlink, $GITSYNC_HOOKS_BEFORE_SYMLINK
2581
+ Whether to run the --exechook-command before updating the symlink. Use in combination with --hooks-async set
2582
+ to false if you need the hook to finish before the symlink is updated.
2583
+
2577
2584
--http-bind <string>, $GITSYNC_HTTP_BIND
2578
2585
The bind address (including port) for git-sync's HTTP endpoint.
2579
2586
The '/' URL of this endpoint is suitable for Kubernetes startup and
Original file line number Diff line number Diff line change @@ -3846,7 +3846,8 @@ for t; do
3846
3846
fi
3847
3847
remove_containers || true
3848
3848
run=$(( run+ 1 ))
3849
- done if [[ " $test_ret " != 0 ]]; then
3849
+ done
3850
+ if [[ " $test_ret " != 0 ]]; then
3850
3851
final_ret=1
3851
3852
failures+=(" $t (log: ${log} .*)" )
3852
3853
fi
You can’t perform that action at this time.
0 commit comments