Remove unintended `-v` flag from binstub template (#4821)
diff --git a/lib/src/global_packages.dart b/lib/src/global_packages.dart
index 235c774..aa04a91 100644
--- a/lib/src/global_packages.dart
+++ b/lib/src/global_packages.dart
@@ -1031,10 +1031,8 @@
   if [ \$exit_code != 253 ]; then
     exit \$exit_code
   fi
-  dart $pubInvocation -v global run $runPubGlobal "\$@"
-else
-  dart $pubInvocation global run $runPubGlobal "\$@"
 fi
+dart $pubInvocation global run $runPubGlobal "\$@"
 ''';
       } else {
         binstub = '''
diff --git a/tool/test.dart b/tool/test.dart
index 700a2b6..98468b9 100755
--- a/tool/test.dart
+++ b/tool/test.dart
@@ -1,4 +1,5 @@
 #!/usr/bin/env -S dart run -r
+
 // Copyright (c) 2012, the Dart project authors.  Please see the AUTHORS file
 // for details. All rights reserved. Use of this source code is governed by a
 // BSD-style license that can be found in the LICENSE file.