1
0
Fork 0
mirror of https://github.com/capistrano/capistrano synced 2023-03-27 23:21:18 -04:00

Fix %x typo in local tasks example (#2040)

This commit is contained in:
Tien 2019-10-26 22:50:48 +07:00 committed by Matt Brictson
parent 1bfbe82007
commit 6e85c69a44

View file

@ -21,7 +21,7 @@ Of course, you can always just use standard ruby syntax to run things locally:
```ruby
desc 'Notify service of deployment'
task :notify do
%x('RAILS_ENV=development bundle exec rake "service:notify"')
%x(RAILS_ENV=development bundle exec rake "service:notify")
end
```