build.sh: try skipping the curator/stack --version run

This commit is contained in:
Jens Petersen 2025-08-16 15:39:40 +08:00
parent e3543e25f0
commit 4955025a40

View File

@ -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 curl -L https://github.com/commercialhaskell/stack/releases/download/v${STACK_VERSION}/stack-${STACK_VERSION}-linux-x86_64-bin > stack
chmod +x stack chmod +x stack
docker run --rm -v "$(pwd)"/curator:/curator -v "$(pwd)"/stack:/stack $IMAGE /bin/bash -c " # docker run --rm -v "$(pwd)"/curator:/curator -v "$(pwd)"/stack:/stack $IMAGE /bin/bash -c "
echo -n 'curator version: ' # echo -n 'curator version: '
/curator --version # /curator --version
echo -n 'stack version: ' # echo -n 'stack version: '
/stack --version # /stack --version
" # "
) # )
# We share pantry directory between snapshots while the other content in .stack # We share pantry directory between snapshots while the other content in .stack
# is stored separately (because e.g. Ubuntu releases between LTS and nightly # is stored separately (because e.g. Ubuntu releases between LTS and nightly