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:
parent
1bfbe82007
commit
6e85c69a44
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
```
|
||||
|
||||
|
|
Loading…
Reference in a new issue