mirror of
https://github.com/capistrano/capistrano
synced 2023-03-27 23:21:18 -04:00
set the variables using the correct syntax
git-svn-id: http://svn.rubyonrails.org/rails/tools/capistrano@7385 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
parent
d5d9ceb47c
commit
d9d46ceb8f
1 changed files with 3 additions and 3 deletions
|
@ -40,9 +40,9 @@ _cset(:strategy) { Capistrano::Deploy::Strategy.new(deploy_via, self) }
|
|||
|
||||
_cset(:release_name) { set :deploy_timestamped, true; Time.now.utc.strftime("%Y%m%d%H%M%S") }
|
||||
|
||||
_cset(:version_dir) "releases"
|
||||
_cset(:shared_dir) "shared"
|
||||
_cset(:current_dir) "current"
|
||||
_cset :version_dir, "releases"
|
||||
_cset :shared_dir, "shared"
|
||||
_cset :current_dir, "current"
|
||||
|
||||
_cset(:releases_path) { File.join(deploy_to, version_dir) }
|
||||
_cset(:shared_path) { File.join(deploy_to, shared_dir) }
|
||||
|
|
Loading…
Reference in a new issue