mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-10 14:23:07 -05:00
12 lines
220 B
Ruby
12 lines
220 B
Ruby
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
module VagrantPlugins
|
|
module NoopDeploy
|
|
class Push < Vagrant.plugin("2", :push)
|
|
def push
|
|
puts "pushed"
|
|
end
|
|
end
|
|
end
|
|
end
|