From 5ebd81037d16b3142bf02d688ce9ddbf4269a375 Mon Sep 17 00:00:00 2001 From: Altan Orhon Date: Thu, 28 Sep 2023 15:49:09 -0700 Subject: [PATCH] Apptainer call --- hyakvnc/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hyakvnc/__main__.py b/hyakvnc/__main__.py index 7a3ae4f..41a9b90 100644 --- a/hyakvnc/__main__.py +++ b/hyakvnc/__main__.py @@ -114,7 +114,7 @@ def create_node_signal_handler(signal_number, frame): # Command to start the apptainer instance and keep it running: apptainer_cmd_with_rest = ( - apptainer_env_vars_string + "printenv && " + apptainer_cmd + " && while true; do sleep 10; done" + apptainer_env_vars_string + apptainer_cmd + " && while true; do sleep 10; done" ) # The sbatch wrap functionality allows submitting commands without an sbatch script:t