Skip to content

Commit

Permalink
Merge pull request #11 from awibox/develop
Browse files Browse the repository at this point in the history
#9: Debug for check build directory
  • Loading branch information
Andrei Arkhipov authored Jan 19, 2020
2 parents 7a9b57c + 3a0f804 commit 7cd5c6c
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,15 @@ if [[ -z "$BUILD_PATH" ]]; then
fi

if [[ -e $BUILD_PATH ]]; then
echo "$BUILD_PATH was found"
else
echo "$BUILD_PATH not founded. You should run build"
exit 1
fi

if [[ -e '$BUILD_PATH' ]]; then
echo "BUILD_PATH was found"
else
echo "BUILD_PATH not founded. You should run build"
fi

if [[ -z "$AUTHOR" ]]; then
Expand Down

0 comments on commit 7cd5c6c

Please sign in to comment.