summary refs log tree commit diff
diff options
context:
space:
mode:
authorOlivier Wilkinson (reivilibre) <oliverw@matrix.org>2022-07-01 17:17:12 +0100
committerOlivier Wilkinson (reivilibre) <oliverw@matrix.org>2022-07-04 12:01:09 +0100
commitae7f8cccc2d8d045a99764a31ccd2b4f2c20d3f0 (patch)
tree39c8c6ea127226b3d39c37e44c84b67da25d727f
parentAdd a --build-only argument to complement.sh (diff)
downloadsynapse-ae7f8cccc2d8d045a99764a31ccd2b4f2c20d3f0.tar.xz
Give -f a long option --fast as it's confusing otherwise (and I might remember it better)
-rwxr-xr-xscripts-dev/complement.sh5
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")