From d362e93ca92430e87620cc0e69e8eaa5aae0e954 Mon Sep 17 00:00:00 2001
From: Michael <m.langguth@fz-juelich.de>
Date: Fri, 12 Feb 2021 13:54:54 +0100
Subject: [PATCH] Refinement of setup_runscript_templates.sh.

---
 .../config_runscripts/setup_runscript_templates.sh             | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/video_prediction_tools/config_runscripts/setup_runscript_templates.sh b/video_prediction_tools/config_runscripts/setup_runscript_templates.sh
index f99fda89..caf8765e 100644
--- a/video_prediction_tools/config_runscripts/setup_runscript_templates.sh
+++ b/video_prediction_tools/config_runscripts/setup_runscript_templates.sh
@@ -52,6 +52,7 @@ fi
 
 echo "Start setting up templates under nonHPC_scripts/..."
 for f in ${BASE_DIR}/nonHPC_scripts/*template.sh; do
+  echo "Setting up ${f}..."
   fnew=${f%%.*}_${USER}.sh
   cp ${f} ${fnew}
   sed -i "s|\(.*_dir=\).*|\1${data_dir}|g" ${fnew}
@@ -60,8 +61,10 @@ echo "Done!"
 
 echo "Start setting up templates under HPC_scripts/"
 for f in ${BASE_DIR}/HPC_scripts/*template.sh; do
+  echo "Setting up ${f}..."
   fnew=${f%%.*}_${USER}.sh
   cp ${f} ${fnew}
   sed -i "s|\(.*_dir=\).*|\1${data_dir}|g" ${fnew}
 done
+echo "Done!"
 # end
-- 
GitLab