Skip to content

Commit cea2384

Browse files
authored
fix for real (#9103)
1 parent 24acdc5 commit cea2384

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

toolset/continuous/tfb-shutdown.sh

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,4 @@ ssh techempower@$TFB_DATABASE_HOST "$(typeset -f docker_clean); docker_clean"
3030
echo "running docker_clean on client host"
3131
ssh techempower@$TFB_CLIENT_HOST "$(typeset -f docker_clean); docker_clean"
3232

33-
if [ -z "$TFB_RUN_ORDER" ]; then
34-
export TFB_RUN_ORDER="reverse"
35-
else
36-
unset TFB_RUN_ORDER
37-
fi
38-
3933
echo "done with tfb-shutdown script"

toolset/continuous/tfb-startup.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,12 @@ git clone \
2020
echo "moving to tfb directory"
2121
cd $TFB_REPOPARENT/$TFB_REPONAME
2222

23+
if [ -z "$TFB_RUN_ORDER" ]; then
24+
export TFB_RUN_ORDER="reverse"
25+
else
26+
unset TFB_RUN_ORDER
27+
fi
28+
2329
echo "building tfb docker image"
2430
docker build -t techempower/tfb \
2531
--build-arg USER_ID=$(id -u) \

0 commit comments

Comments
 (0)