mirror of
https://github.com/notwa/rc
synced 2024-11-05 08:29:02 -08:00
12 lines
248 B
Bash
12 lines
248 B
Bash
#!/usr/bin/env sh
|
|
# YES_ZSH
|
|
|
|
#. ~/sh/maybesudo
|
|
#. ~/sh/has
|
|
|
|
pippy() { ### @-
|
|
local sudo="$(has sudo || echo maybesudo_)"
|
|
"$sudo" py -m pip install --upgrade --upgrade-strategy only-if-needed "$@"
|
|
}
|
|
|
|
[ "${SOURCING:-0}" -gt 0 ] || pippy "$@"
|