Skip to content

Commit

Permalink
Use full path to Homestead config file (#540)
Browse files Browse the repository at this point in the history
This allows us to halt the VM from anywhere on the system.
  • Loading branch information
driesvints authored and svpernova09 committed Apr 10, 2017
1 parent 39deddb commit 1835ccb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/LocalizedVagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ require 'yaml'
VAGRANTFILE_API_VERSION ||= "2"
confDir = $confDir ||= File.expand_path("vendor/laravel/homestead", File.dirname(__FILE__))

homesteadYamlPath = "Homestead.yaml"
homesteadJsonPath = "Homestead.json"
homesteadYamlPath = File.expand_path("Homestead.yaml", File.dirname(__FILE__))
homesteadJsonPath = File.expand_path("Homestead.json", File.dirname(__FILE__))
afterScriptPath = "after.sh"
aliasesPath = "aliases"

Expand Down

0 comments on commit 1835ccb

Please sign in to comment.