Skip to content

Commit

Permalink
Merge pull request #98 from jasonmccallister/main
Browse files Browse the repository at this point in the history
  • Loading branch information
mnapoli authored Jul 5, 2023
2 parents 731428e + 2eb238d commit 13de33e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
5 changes: 4 additions & 1 deletion layers/console/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@
# Fail on error
set -e

export RUNTIME_CLASS="Bref\ConsoleRuntime\Main"
# check if the RUNTIME_CLASS is already set
if [ -z "${RUNTIME_CLASS}" ]; then
export RUNTIME_CLASS="Bref\ConsoleRuntime\Main"
fi

while true
do
Expand Down
5 changes: 4 additions & 1 deletion layers/fpm/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@
# Fail on error
set -e

export RUNTIME_CLASS="Bref\FpmRuntime\Main"
# check if the RUNTIME_CLASS is already set
if [ -z "${RUNTIME_CLASS}" ]; then
export RUNTIME_CLASS="Bref\FpmRuntime\Main"
fi

while true
do
Expand Down
5 changes: 4 additions & 1 deletion layers/function/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@
# Fail on error
set -e

export RUNTIME_CLASS="Bref\FunctionRuntime\Main"
# check if the RUNTIME_CLASS is already set
if [ -z "${RUNTIME_CLASS}" ]; then
export RUNTIME_CLASS="Bref\FunctionRuntime\Main"
fi

while true
do
Expand Down

0 comments on commit 13de33e

Please sign in to comment.