Silence svn checkout output

This commit is contained in:
Sanjin Sehic 2012-02-07 16:05:25 +01:00 committed by Mark Harrah
parent bcfe46c019
commit 3514ad7039
1 changed files with 2 additions and 2 deletions

View File

@ -42,13 +42,13 @@ object Resolvers
val revision = uri.getFragment
Some {
() => creates(localCopy) {
run("svn", "checkout", "-r", revision, from, to)
run("svn", "checkout", "-q", "-r", revision, from, to) |>: stdout
}
}
} else
Some {
() => creates(localCopy) {
run("svn", "checkout", from, to)
run("svn", "checkout", "-q", from, to) |>: stdout
}
}
}