From 4955025a40abb2abf2e7fb8d9ecf81430c31439b Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sat, 16 Aug 2025 15:39:40 +0800 Subject: [PATCH] build.sh: try skipping the curator/stack --version run --- automated/build.sh | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/automated/build.sh b/automated/build.sh index b199ec9f..e81ef5aa 100755 --- a/automated/build.sh +++ b/automated/build.sh @@ -88,13 +88,13 @@ STACK_VERSION=3.7.1 curl -L https://github.com/commercialhaskell/stack/releases/download/v${STACK_VERSION}/stack-${STACK_VERSION}-linux-x86_64-bin > stack chmod +x stack -docker run --rm -v "$(pwd)"/curator:/curator -v "$(pwd)"/stack:/stack $IMAGE /bin/bash -c " - echo -n 'curator version: ' - /curator --version - echo -n 'stack version: ' - /stack --version - " -) +# docker run --rm -v "$(pwd)"/curator:/curator -v "$(pwd)"/stack:/stack $IMAGE /bin/bash -c " +# echo -n 'curator version: ' +# /curator --version +# echo -n 'stack version: ' +# /stack --version +# " +# ) # We share pantry directory between snapshots while the other content in .stack # is stored separately (because e.g. Ubuntu releases between LTS and nightly