Skip to content

Commit

Permalink
make DEPLOYMENTS_DIR overridable (fabric8io-images#146)
Browse files Browse the repository at this point in the history
  • Loading branch information
vorburger committed May 1, 2018
1 parent 8cd5d40 commit a53619c
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/s2i-setup
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
S2I_DESTINATION=${S2I_DESTINATION:-/tmp}
S2I_SOURCE_DIR="${S2I_DESTINATION}/src"
S2I_ARTIFACTS_DIR="${S2I_DESTINATION}/artifacts"
DEPLOYMENTS_DIR="/deployments"
DEPLOYMENTS_DIR="${DEPLOYMENTS_DIR:-/deployments}"
RUN_JAVA_DIR=/opt/run-java
2 changes: 1 addition & 1 deletion java/images/rhel/s2i/s2i-setup
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
S2I_DESTINATION=${S2I_DESTINATION:-/tmp}
S2I_SOURCE_DIR="${S2I_DESTINATION}/src"
S2I_ARTIFACTS_DIR="${S2I_DESTINATION}/artifacts"
DEPLOYMENTS_DIR="/deployments"
DEPLOYMENTS_DIR="${DEPLOYMENTS_DIR:-/deployments}"
RUN_JAVA_DIR=/opt/run-java
2 changes: 1 addition & 1 deletion java/templates/s2i/s2i-setup
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
S2I_DESTINATION=${S2I_DESTINATION:-/tmp}
S2I_SOURCE_DIR="${S2I_DESTINATION}/src"
S2I_ARTIFACTS_DIR="${S2I_DESTINATION}/artifacts"
DEPLOYMENTS_DIR="/deployments"
DEPLOYMENTS_DIR="${DEPLOYMENTS_DIR:-/deployments}"
RUN_JAVA_DIR=/opt/run-java

0 comments on commit a53619c

Please sign in to comment.