aboutsummaryrefslogtreecommitdiffstats
path: root/dashboard
diff options
context:
space:
mode:
authorTaras Madan <tarasmadan@google.com>2024-11-04 16:16:38 +0100
committerTaras Madan <tarasmadan@google.com>2024-11-05 10:45:32 +0000
commit7cd89b489bee453d86615d47ca6a71a06e5113db (patch)
tree069ef1bba89d15422add82db2d34304a5d3a4101 /dashboard
parent509da42949c4013fb236ebf6e25d3562d110198c (diff)
dashboard/app: generate fewer logs exporting reproducers
1. Don't pring per-file log by tool. 2. Disable tar verbosity. 3. Make gsutil quiet.
Diffstat (limited to 'dashboard')
-rw-r--r--dashboard/app/batch_reproexport.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/dashboard/app/batch_reproexport.go b/dashboard/app/batch_reproexport.go
index a9f10e32c..1fa8ec224 100644
--- a/dashboard/app/batch_reproexport.go
+++ b/dashboard/app/batch_reproexport.go
@@ -36,7 +36,7 @@ func exportReproScript(srcNamespace, archivePath string) string {
"token=$(gcloud auth print-access-token)\n" +
"CI=1 ./tools/syz-env \"" + // CI=1 to suppress "The input device is not a TTY".
"go run ./tools/syz-reprolist/... -namespace " + srcNamespace + " -token $token -j 10 && " +
- "tar -czvf reproducers.tar.gz ./repros/ && " +
- "gsutil -m cp reproducers.tar.gz " + archivePath +
+ "tar -czf reproducers.tar.gz ./repros/ && " +
+ "gsutil -q -m cp reproducers.tar.gz " + archivePath +
"\""
}