diff options
author | Olivier Wilkinson (reivilibre) <oliverw@matrix.org> | 2022-07-01 17:17:12 +0100 |
---|---|---|
committer | Olivier Wilkinson (reivilibre) <oliverw@matrix.org> | 2022-07-04 12:01:09 +0100 |
commit | ae7f8cccc2d8d045a99764a31ccd2b4f2c20d3f0 (patch) | |
tree | 39c8c6ea127226b3d39c37e44c84b67da25d727f | |
parent | Add a --build-only argument to complement.sh (diff) | |
download | synapse-ae7f8cccc2d8d045a99764a31ccd2b4f2c20d3f0.tar.xz |
Give -f a long option --fast as it's confusing otherwise (and I might remember it better)
-rwxr-xr-x | scripts-dev/complement.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/scripts-dev/complement.sh b/scripts-dev/complement.sh index 04ccf127f9..25cb66ac9c 100755 --- a/scripts-dev/complement.sh +++ b/scripts-dev/complement.sh @@ -44,7 +44,8 @@ usage() { Usage: $0 [-f] <go test arguments>... Run the complement test suite on Synapse. - -f Skip rebuilding the docker images, and just use the most recent + -f, --fast + Skip rebuilding the docker images, and just use the most recent 'complement-synapse:latest' image --build-only @@ -64,7 +65,7 @@ while [ $# -ge 1 ]; do usage exit 1 ;; - "-f") + "-f"|"--fast") skip_docker_build=1 ;; "--build-only") |