Add missing right bracket

This commit is contained in:
Michael Snoyman 2016-08-10 08:01:56 +03:00
parent b955966a2e
commit 5c2912a2ec

View File

@ -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