Skip to content
This repository has been archived by the owner on Dec 21, 2024. It is now read-only.

Commit

Permalink
Revert "Allow applications built w/o wobootstrap being present to sta…
Browse files Browse the repository at this point in the history
…rt w/o environment variables."

This reverts commit ca493f4.
  • Loading branch information
fbarthez committed Jul 6, 2020
1 parent ca493f4 commit 93611ff
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -151,13 +151,15 @@ if [ "${PLATFORM_TYPE}" = "Other" ]
then
if [ "${NEXT_ROOT}" = "" ]
then
echo ${SCRIPT_NAME}: NEXT_ROOT environment variable is not set!
echo ${SCRIPT_NAME}: NEXT_ROOT environment variable is not set! Terminating.
exit 1
fi
fi

if [ "${HOME}" = "" ]
then
echo ${SCRIPT_NAME}: HOME environment variable is not set!
echo ${SCRIPT_NAME}: HOME environment variable is not set! Terminating.
exit 1
fi

echo Reading ${CLASSPATH_FILENAME} ...
Expand Down

0 comments on commit 93611ff

Please sign in to comment.