Skip to content

Commit 01f3ff0

Browse files
committed
pkgx -q the ensure script
1 parent a805d99 commit 01f3ff0

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

scripts/ensure.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env -S pkgx bash>=4 -eo pipefail
1+
#!/usr/bin/env -S pkgx --quiet bash>=4 -eo pipefail
22

33
_main() {
44
# check if all args begin with a +
@@ -27,7 +27,7 @@ _main() {
2727
fi
2828
done
2929
if [ ${#_KEEP[@]} -gt 0 ]; then
30-
exec pkgx -q "${_KEEP[@]}"
30+
exec pkgx --quiet "${_KEEP[@]}"
3131
fi
3232
elif _check_arg $1; then
3333
if [ $1 = python -a $(uname) = Darwin ]; then
@@ -37,7 +37,7 @@ _main() {
3737
exec "$@"
3838
fi
3939
else
40-
exec pkgx -q "$@"
40+
exec pkgx --quiet "$@"
4141
fi
4242
}
4343

0 commit comments

Comments
 (0)