We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a805d99 commit 01f3ff0Copy full SHA for 01f3ff0
1 file changed
scripts/ensure.sh
@@ -1,4 +1,4 @@
1
-#!/usr/bin/env -S pkgx bash>=4 -eo pipefail
+#!/usr/bin/env -S pkgx --quiet bash>=4 -eo pipefail
2
3
_main() {
4
# check if all args begin with a +
@@ -27,7 +27,7 @@ _main() {
27
fi
28
done
29
if [ ${#_KEEP[@]} -gt 0 ]; then
30
- exec pkgx -q "${_KEEP[@]}"
+ exec pkgx --quiet "${_KEEP[@]}"
31
32
elif _check_arg $1; then
33
if [ $1 = python -a $(uname) = Darwin ]; then
@@ -37,7 +37,7 @@ _main() {
37
exec "$@"
38
39
else
40
- exec pkgx -q "$@"
+ exec pkgx --quiet "$@"
41
42
}
43
0 commit comments