Skip to content

Commit

Permalink
Fix bash syntax in assemble script
Browse files Browse the repository at this point in the history
  • Loading branch information
brenthdaniel committed Jul 14, 2020
1 parent dc8ceb6 commit 5b6e855
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/ol-s2i/artifacts/usr/local/s2i/assemble
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ if [ -f "$LOCAL_SOURCE_DIR/pom.xml" ]; then
fi


if [ -f "${LOCAL_SOURCE_DIR}/Dockerfile" ] && [ -d "${LOCAL_SOURCE_DIR}/maven"]; then
if [ -f "${LOCAL_SOURCE_DIR}/Dockerfile" ] && [ -d "${LOCAL_SOURCE_DIR}/maven" ]; then
# This is an S2I binary build coming from fabric8-maven-plugin
echo "S2I binary build from fabric8-maven-plugin detected"
LOCAL_SOURCE_DIR=$LOCAL_SOURCE_DIR/maven
Expand Down

0 comments on commit 5b6e855

Please sign in to comment.