Skip to content

Commit

Permalink
Merge pull request #147 from vorburger/DEPLOYMENTS_DIR
Browse files Browse the repository at this point in the history
make DEPLOYMENTS_DIR overridable (#146)
  • Loading branch information
rhuss authored May 15, 2018
2 parents de582c8 + be778c1 commit 5804783
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion java/images/jboss/s2i/assemble
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ function build_gradle() {

echo "=================================================================="
echo "Starting S2I Java Build ....."
mkdir -p ${DEPLOYMENTS_DIR}
[ -d "${DEPLOYMENTS_DIR}" ] || mkdir -p "${DEPLOYMENTS_DIR}"
if [ -f "${S2I_SOURCE_DIR}/pom.xml" ]; then
echo "S2I source build for Maven detected"
build_dir=$(get_maven_output_dir)
Expand Down
2 changes: 1 addition & 1 deletion java/images/rhel/s2i/assemble
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ function build_maven() {

echo "=================================================================="
echo "Starting S2I Java Build ....."
mkdir -p ${DEPLOYMENTS_DIR}
[ -d "${DEPLOYMENTS_DIR}" ] || mkdir -p "${DEPLOYMENTS_DIR}"
if [ -f "${S2I_SOURCE_DIR}/pom.xml" ]; then
echo "S2I source build for Maven detected"
build_dir=$(get_maven_output_dir)
Expand Down
2 changes: 1 addition & 1 deletion java/templates/s2i/assemble
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ function build_gradle() {

echo "=================================================================="
echo "Starting S2I Java Build ....."
mkdir -p ${DEPLOYMENTS_DIR}
[ -d "${DEPLOYMENTS_DIR}" ] || mkdir -p "${DEPLOYMENTS_DIR}"
if [ -f "${S2I_SOURCE_DIR}/pom.xml" ]; then
echo "S2I source build for Maven detected"
build_dir=$(get_maven_output_dir)
Expand Down

0 comments on commit 5804783

Please sign in to comment.