Skip to content
This repository has been archived by the owner on Aug 29, 2018. It is now read-only.

Commit

Permalink
Merge pull request #526 from marun/fix-dind-build
Browse files Browse the repository at this point in the history
Build dind images only if build script is present
  • Loading branch information
smarterclayton committed Dec 19, 2016
2 parents a398827 + 7f31bf6 commit 05f893d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/vagrant-openshift/action/build_origin_base_images.rb
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ def call(env)
set -e
pushd /data/src/github.com/openshift/origin
hack/build-base-images.sh
hack/build-dind-images.sh
if [[ -f "hack/build-dind-images.sh" ]]; then
hack/build-dind-images.sh
fi
popd
},
{ :timeout => 60*60*2, :verbose => false })
Expand Down

0 comments on commit 05f893d

Please sign in to comment.