From 8d8d78dc81d299db97ba5f0191340a730a4a50ef Mon Sep 17 00:00:00 2001 From: Sarah Vaupel Date: Sun, 10 Nov 2024 01:43:21 +0100 Subject: [PATCH] build(Makefile): disable buggy custom stack-work locking for now --- utils/stack-work-init.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/utils/stack-work-init.sh b/utils/stack-work-init.sh index f88fabad1..c9628bf3b 100755 --- a/utils/stack-work-init.sh +++ b/utils/stack-work-init.sh @@ -2,10 +2,10 @@ STACK_WORK_SRC=.stack-work-${JOB} -if [[ -e .stack-work.lock ]]; then - echo ".stack-work directory is locked (lock file exists); is another stack currently running?" - exit 1 -fi +#if [[ -e .stack-work.lock ]]; then +# echo ".stack-work directory is locked (lock file exists); is another stack currently running?" +# exit 1 +#fi touch .stack-work.lock rm -rf .stack-work