diff --git a/scripts/ci_run_entry_points.sh b/scripts/ci_run_entry_points.sh
index 077cbde658c534db730c9b79883bdd75f89c6c90..b262dd99eb14dccf493e898afe9bc1379b858c6f 100755
--- a/scripts/ci_run_entry_points.sh
+++ b/scripts/ci_run_entry_points.sh
@@ -1,5 +1,7 @@
 #!/bin/bash
 
+echo Looking up and executing user entry scripts in: $1
+
 find -L $1 -name ci_entry_script.bash -exec bash -c 'echo Running entry script from $(basename $(dirname {})) ; {} ' \;
 
 echo Finalized running the user entry scripts