Skip to content

Commit a16cca9

Browse files
committed
Update Vagrantfile.dist
1 parent 7e55aaf commit a16cca9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/stub/Vagrantfile.dist

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ confDir = $confDir ||= File.expand_path("vendor/ytake/gardening", File.dirname(_
1111

1212
GardeningYamlPath = "./vagrant.yaml"
1313
GardeningJsonPath = "./vagrant.json"
14-
afterScriptPath = "./after.sh"
14+
appendScriptPath = "./append.sh"
1515
aliasesPath = "./aliases"
1616

1717
require File.expand_path(confDir + '/scripts/builder.rb')
@@ -28,7 +28,7 @@ Vagrant.configure(2) do |config|
2828
Builder.configure(config, JSON.parse(File.read(GardeningJsonPath)))
2929
end
3030

31-
if File.exists? afterScriptPath then
32-
config.vm.provision "shell", path: afterScriptPath
31+
if File.exists? appendScriptPath then
32+
config.vm.provision "shell", path: appendScriptPath
3333
end
3434
end

0 commit comments

Comments
 (0)