brave / install.sh

BSD 3-Clause "New" or "Revised" License
0 stars 0 forks source link

Potential improvements deviating from upstream #24

Closed wknapik closed 3 days ago

wknapik commented 4 weeks ago
# helper
show() { (set -x; "$@"); }

# so we can do
show apt-get update

# instead of
set -x
apt-get update
set +x

# and lose the repeating "+ set +x" in the output