Merge pull request #9778 from OverByThere/patch-1

Syntax error for running remote script
This commit is contained in:
Brian Cain 2018-05-04 09:08:56 -07:00 committed by GitHub
commit 09be82f1e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ config.vm.define "ubuntu" do |ubuntu|
ubuntu.vm.box = "ubuntu"
ubuntu.trigger.before :destroy do |trigger|
trigger.warn = "Dumping database to /vagrant/outfile"
trigger.run_remote {inline: "pg_dump dbname > /vagrant/outfile"}
trigger.run_remote = {inline: "pg_dump dbname > /vagrant/outfile"}
end
end
```