I searched on capistrano documentation but I didn't find.
+1
A:
From the source (in this case subversion, but it works similarly for other scm modules):
def verbose
variable(:scm_verbose) ? nil : "-q"
end
Unless :scm_verbose
is true
, the -q
option is added to all svn commands, which suppresses output such as lists of files retrieved from the repository.
molf
2010-01-11 15:37:47
sorry but, what's the diference between -q and without -q ?
Lucas Renan
2010-01-11 16:40:42
@Lucas, as I said above, -q suppresses output (usually a list of updated files from the repository).
molf
2010-01-11 17:14:43
thanks for your explanation, I was having problems with deploy via remote cache, then I added :scm_verbose, true to deploy.rb file and fixed the problem =]
Lucas Renan
2010-01-11 17:56:19