You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if [[ ! -e ${microservice_dir}/entrypoint.sh ]]; then
echo "This script sees the MICROSERVICE environment variable set to \"$MICROSERVICE\" but is unable to find the corresponding entrypoint script \"${microservice_dir}/entrypoint.sh\"" >&2
exit 2
fi
cd $microservice_dir
./entrypoint.sh
retval=$?
echo "Return value of call to ${microservice_dir}/entrypoint.sh is $retval"