diff --git a/lib/rbpkg.rb b/lib/rbpkg.rb
index fa1b2b2..11575b6 100644
--- a/lib/rbpkg.rb
+++ b/lib/rbpkg.rb
@@ -149,7 +149,7 @@ EOF
def self.ci_remote(repo, branch, commit, host)
verbose(3, "Rbpkg.ci_remote(#{repo.inspect}, #{branch.inspect}, #{commit.inspect}, #{host.inspect})")
sh_host = sh_quote(host)
- cmd "ssh #{sh_host} rbpkg/bin/rbpkg_ci -qq #{sh_quote(repo)} #{sh_quote(branch)} #{sh_quote(commit)}"
+ cmd "ssh #{sh_host} rbpkg/bin/rbpkg_ci #{sh_quote(repo)} #{sh_quote(branch)} #{sh_quote(commit)}"
sh_ci_dir = sh_quote(ci_dir)
cmd! "rsync -a #{sh_host}:#{sh_ci_dir}/. #{sh_ci_dir}"
end