diff --git a/video_prediction_tools/config_runscripts/setup_runscript_templates.sh b/video_prediction_tools/config_runscripts/setup_runscript_templates.sh
index f99fda89fecfd5abd564d56156fe9c8d79278384..caf8765e9484f644a1cb7ae79d02008a6eac1c03 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