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

Merge pull request #196 from thekeenant/patch-1

Fix invalid characters in application name example
This commit is contained in:
Matt Brictson 2016-07-27 14:53:51 -07:00 committed by GitHub
commit 03d933b852

View file

@ -156,7 +156,7 @@ self-documenting, commented-out configuration options, feel free to play with
them a little:
```ruby
set :application, 'my app name'
set :application, 'my_app_name'
set :repo_url, 'git@example.com:me/my_repo.git'
ask :branch, proc { `git rev-parse --abbrev-ref HEAD`.chomp }
```