From 5c2912a2ec84bc21a491f5190b64cb20cdaee3e1 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 10 Aug 2016 08:01:56 +0300 Subject: [PATCH] Add missing right bracket --- automated/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/automated/build.sh b/automated/build.sh index c560f8cf..70d506f7 100755 --- a/automated/build.sh +++ b/automated/build.sh @@ -103,7 +103,7 @@ curl -L https://www.stackage.org/stack/linux-x86_64 | tar xz --wildcards --strip # * Check that the plan is valid # * Fetch all needed tarballs (the build step does not have write access to the tarball directory) # * Do a single unpack to create the package index cache (again due to directory perms) -if [ "${NOPLAN:-}x" = "x" +if [ "${NOPLAN:-}x" = "x" ] then docker run $ARGS_PREBUILD $IMAGE /bin/bash -c "$HOME/bin/stack update && stackage-curator create-plan --plan-file $PLAN_FILE --target $TARGET ${CONSTRAINTS:-} && stackage-curator check --plan-file $PLAN_FILE && stackage-curator fetch --plan-file $PLAN_FILE && cd /tmp && $HOME/bin/stack unpack random" fi