tags:

views:

40

answers:

1

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
sorry but, what's the diference between -q and without -q ?
Lucas Renan
@Lucas, as I said above, -q suppresses output (usually a list of updated files from the repository).
molf
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