summaryrefslogtreecommitdiffstats
path: root/docker/federation/run-federation-test.bash
diff options
context:
space:
mode:
Diffstat (limited to 'docker/federation/run-federation-test.bash')
-rwxr-xr-xdocker/federation/run-federation-test.bash8
1 files changed, 5 insertions, 3 deletions
diff --git a/docker/federation/run-federation-test.bash b/docker/federation/run-federation-test.bash
index 7cf26206..62bc1e8b 100755
--- a/docker/federation/run-federation-test.bash
+++ b/docker/federation/run-federation-test.bash
@@ -1,9 +1,11 @@
#!/bin/bash
set -e
-pushd ../../ui/ || exit
-yarn build
-popd || exit
+if [ "$1" = "-yarn" ]; then
+ pushd ../../ui/ || exit
+ yarn build
+ popd || exit
+fi
pushd ../../server/ || exit
cargo build