enter_chroot: drop --verbose with copying

The verbose output goes to stdout which breaks all our tooling which
runs programs for their output.  Since there's no way to send that to
stderr, just drop it entirely for now.

BUG=chromium:1034356
TEST=CQ passes

Change-Id: I6e5633001347abce4cbed7ba2f5b977522fa636f
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosutils/+/1968158
Commit-Queue: Mike Frysinger <vapier@chromium.org>
Tested-by: Mike Frysinger <vapier@chromium.org>
Reviewed-by: Nicolas Boichat <drinkcat@chromium.org>
diff --git a/sdk_lib/enter_chroot.sh b/sdk_lib/enter_chroot.sh
index 8ecc575..64efce1 100755
--- a/sdk_lib/enter_chroot.sh
+++ b/sdk_lib/enter_chroot.sh
@@ -209,11 +209,7 @@
 copy_into_chroot_if_exists() {
   # $1 is file path outside of chroot to copy to path $2 inside chroot.
   if [[ -e "$1" ]]; then
-    local verbose
-    if [[ "${SUDO_USER:-${USER}}" == "chrome-bot" ]]; then
-      verbose="-v"
-    fi
-    user_cp ${verbose} "$1" "${FLAGS_chroot}/$2"
+    user_cp "$1" "${FLAGS_chroot}/$2"
   fi
 }