From 9096acf5c49760a968c8c32f31c10a3f9ae1932a Mon Sep 17 00:00:00 2001 From: "boris.lin" Date: Thu, 20 Feb 2025 16:28:10 +0800 Subject: [PATCH] fix set_postexec --- LSF-Batch/Batch.xs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LSF-Batch/Batch.xs b/LSF-Batch/Batch.xs index a654cbc..9d8ea20 100755 --- a/LSF-Batch/Batch.xs +++ b/LSF-Batch/Batch.xs @@ -4851,7 +4851,7 @@ int set_postexec( struct submit *s, char *key, SV* value ){ return -1; } s->postExecCmd = (char *)SvPV(value, len); - s->options3 |= SUB_PRE_EXEC; + s->options3 |= SUB3_POST_EXEC; return 0; }