Merge pull request #9598 from histamineblkr/patch-1

Fix missing "-" $script variable definition.
This commit is contained in:
Brian Cain 2018-03-21 08:35:14 -07:00 committed by GitHub
commit b3cb16b856
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -107,7 +107,7 @@ Combined with a little bit more Ruby, this makes it very easy to embed
your shell scripts directly within your Vagrantfile. Another example below:
```ruby
$script = <<SCRIPT
$script = <<-SCRIPT
echo I am provisioning...
date > /etc/vagrant_provisioned_at
SCRIPT