blob: d773b6b2a75a3579979250bc3c2aaec9dd3f3a86 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#! /bin/bash
if [[ "$PUBLISH_MODE" == 1 ]]
then
./scripts/publish-rapier.sh &&
./scripts/publish-testbeds.sh &&
./scripts/publish-extra-formats.sh
else
echo "Running in dry mode, re-run with \`PUBLISH_MODE=1 publish-all.sh\` to actually publish."
DRY_RUN="--dry-run" ./scripts/publish-rapier.sh &&
DRY_RUN="--dry-run" ./scripts/publish-testbeds.sh &&
DRY_RUN="--dry-run" ./scripts/publish-extra-formats.sh
fi
|