summaryrefslogtreecommitdiffstats
path: root/src/main/docker/startService.sh
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/docker/startService.sh')
-rw-r--r--src/main/docker/startService.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/docker/startService.sh b/src/main/docker/startService.sh
index a6b368a..6bb0414 100644
--- a/src/main/docker/startService.sh
+++ b/src/main/docker/startService.sh
@@ -5,8 +5,8 @@ cd /opt/app
preStartFile="/opt/app/bin/pre_start.sh"
if [ -f "$preStartFile" ]
then
- echo "$preStartFile found."
- exec $preStartFile
+ echo "Executing $preStartFile ... ..."
+ $preStartFile
else
echo "$preStartFile not found."
fi