Skip to content

Commit

Permalink
[HUDI-606] Improve execute build_local_docker_images.sh script
Browse files Browse the repository at this point in the history
  • Loading branch information
lamberken authored and leesf committed Feb 26, 2020
1 parent 11fb2c2 commit 323fffa
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion docker/build_local_docker_images.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@
# See the License for the specific language governing permissions and
# limitations under the License.

SCRIPT_PATH=$(cd `dirname $0`; pwd)
WS_ROOT=`dirname $SCRIPT_PATH`

while true; do
read -p "Docker images can be downloaded from docker hub and seamlessly mounted with latest HUDI jars. Do you still want to build docker images from scratch ?" yn
case $yn in
Expand All @@ -24,6 +27,6 @@ while true; do
* ) echo "Please answer yes or no.";;
esac
done
pushd ../
pushd ${WS_ROOT}
mvn clean pre-integration-test -DskipTests -Ddocker.compose.skip=true -Ddocker.build.skip=false
popd

0 comments on commit 323fffa

Please sign in to comment.