From 473a120feb9674efe8f03e29e592df5e7da991da Mon Sep 17 00:00:00 2001 From: Tibo De Peuter Date: Sun, 5 Apr 2026 12:32:02 +0200 Subject: [PATCH] fix(hpc): create runs dir on first run --- scripts/hpc/install.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/hpc/install.sh b/scripts/hpc/install.sh index 8a625a9..d1b69db 100644 --- a/scripts/hpc/install.sh +++ b/scripts/hpc/install.sh @@ -19,6 +19,8 @@ if [ -n "$PBS_O_WORKDIR" ]; then cd "$PBS_O_WORKDIR" fi +mkdir "${PBS_O_WORKDIR}/runs" + # Mirror configs to $VSC_DATA to avoid home quota limits (3GB) # vsc-venv manages environments relative to the requirements file PROJ_NAME=$(basename "$PWD")