diff options
author | Jack Humbert <jack.humb@gmail.com> | 2016-06-04 13:30:11 -0400 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2016-06-04 13:30:11 -0400 |
commit | 83c52c6009c6b540fcf9288004ac4ae896f4ac7b (patch) | |
tree | 91ae87dfe5b9cf7bbadbcb3803b970bf7f131318 | |
parent | b46f343de781a88dfe72d66246964c47e2000f49 (diff) |
corrects vagrant script path from @b46f343
-rw-r--r-- | Vagrantfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Vagrantfile b/Vagrantfile index 49163aea8e..c44eaf2d69 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -68,7 +68,7 @@ Vagrant.configure(2) do |config| # add a # before ,args: and run 'vagrant up' to get a working
# non-updated box and then attempt to troubleshoot or open a Github issue
- config.vm.provision "shell", run: "always", path: "util/avr_setup.sh", args: "-update"
+ config.vm.provision "shell", run: "always", path: "./util/avr_setup.sh", args: "-update"
config.vm.post_up_message = """
Log into the VM using 'vagrant ssh' on OSX or from Git Bash (Win)
|