1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2025-02-05 07:43:22 -08:00
rc/sh/pippy

13 lines
238 B
Text
Raw Normal View History

2021-07-29 00:37:35 -07:00
#!/usr/bin/env
# 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 "$@"