Sha256: 8ff880698b748212cd04e8d7dafd3d2478e15f71f225b7a7d8d1014d1cd4b784
Contents?: true
Size: 354 Bytes
Versions: 21
Compression:
Stored size: 354 Bytes
Contents
module VagrantPlugins module DockerProvider module Action class IsBuild def initialize(app, env) @app = app end def call(env) env[:result] = (!!env[:machine].provider_config.build_dir || !!env[:machine].provider_config.git_repo) @app.call(env) end end end end end
Version data entries
21 entries across 21 versions & 3 rubygems