Skip to content

Commit 7da9144

Browse files
committed
feat: skip sending --verbose’s stderr to /dev/null
Signed-off-by: Lucas Larson <LucasLarson@riseup.net>
1 parent bc59b0b commit 7da9144

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

update

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env sh
2-
update='2026-05-17'
2+
update='2026-05-20'
33
command -p -- printf -- '\n\n .___ __\n __ ________ __\174 _\057____ _\057 \174_ ____\n\174 \174 \134____ \134 \057 __ \174\134__ \134\134 __\134\057 __ \134\n\174 \174 \057 \174_\076 \076 \057_\057 \174 \057 __ \134\174 \174 \134 ___\057\n\174____\057\174 __\057\134____ \174\050____ \057__\174 \134___ \076\n \174__\174 \134\057 \134\057 \134\057\n a Lucas Larson production\n\n' >&2 && command -p -- sleep 1
44
command -p -- printf -- '\360\237\223\241 verifying network connectivity' >&2
55
command -p -- sleep 1
@@ -82,10 +82,10 @@ if command -v -- gem >/dev/null 2>&1; then
8282
command -p -- printf -- 'updating RubyGems...\n' >&2
8383
command gem update --system --verbose
8484
command gem update --verbose
85-
if command bundle update >/dev/null 2>&1; then command bundle update --verbose 2>/dev/null; fi
86-
if command bundle install >/dev/null 2>&1; then command bundle install --verbose 2>/dev/null; fi
85+
if command bundle update >/dev/null 2>&1; then command bundle update --verbose; fi
86+
if command bundle install >/dev/null 2>&1; then command bundle install --verbose; fi
8787
command -p -- printf -- 'checking for CocoaPods installation...\n' >&2
88-
if command bundle exec pod install >/dev/null 2>&1; then command bundle exec pod install --verbose 2>/dev/null; fi
88+
if command bundle exec pod install >/dev/null 2>&1; then command bundle exec pod install --verbose; fi
8989
if command pod repo update >/dev/null 2>&1; then
9090
command pod repo update --verbose
9191
command pod repo update --verbose
@@ -110,7 +110,7 @@ if command -v -- python3 >/dev/null 2>&1; then
110110
if command -v -- conda >/dev/null 2>&1; then command conda update --all --yes; else command -p -- printf -- 'no Conda installation detected.\n\n' >&2; fi
111111
fi
112112
if command -v -- brew >/dev/null 2>&1; then
113-
command brew generate-man-completions --debug --verbose 2>/dev/null
113+
command brew generate-man-completions --debug --verbose
114114
command brew bundle dump --cask --debug --describe --file=- --force --formula --mas --no-restart --tap | command -p -- sed -e '$! N' -e '/^#.*\n[^#]/ s/\n/\t/' -e 'P' -e 'D' | command -p -- sed -e 's/\(.*\)\t\(.*\)/\2\1/' | command -p -- sed -e 's/^\(tap\)/1\1/' -e 's/^\(brew\)/2\1/' -e 's/^\(cask\)/3\1/' | LC_ALL='C' command -p -- sort -f | {
115115
command -p -- printf -- '#!/usr/bin/env ruby\n'
116116
command -p -- printf -- '# frozen_string_literal: true\n\n'

0 commit comments

Comments
 (0)