From 060cefc054e2f6dda2e5f806c3fa146690363485 Mon Sep 17 00:00:00 2001 From: Justin Bedo Date: Mon, 10 Dec 2018 09:25:52 +1100 Subject: qsub: fix $TMPDIR location --- lib/qsub.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib') diff --git a/lib/qsub.nix b/lib/qsub.nix index 4ef6dbc..017e52c 100644 --- a/lib/qsub.nix +++ b/lib/qsub.nix @@ -8,14 +8,14 @@ while [ ! -e ${tmpDir}/$PBS_JOBID ] ; do sleep ${toString sleepTime} done + set -a + . ${tmpDir}/$PBS_JOBID/nix-set + set +a TMPDIR=${tmpDir}/$PBS_JOBID TEMP=$TMPDIR TMP=$TMPDIR NIX_BUILD_TOP=$TMPDIR cd $TMPDIR - set -a - . nix-set - set +a ${builder} ${lib.escapeShellArgs args} > qsub-stdout 2> qsub-stderr echo $? > qsub-exit ''; -- cgit v1.2.3