aboutsummaryrefslogtreecommitdiff
path: root/extra/pip-helper.sh
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2022-02-15 09:52:43 -0500
committerB Stack <bgstack15@gmail.com>2022-02-15 09:59:19 -0500
commit171ec414ae74564e2c6f7a6e7da7f0ebdc9db2d5 (patch)
tree44db45d1f1878738b89a3a20b670072a740937af /extra/pip-helper.sh
parentr-proxy support with /set endpoint, and extra dir (diff)
downloadstackbin-171ec414ae74564e2c6f7a6e7da7f0ebdc9db2d5.tar.gz
stackbin-171ec414ae74564e2c6f7a6e7da7f0ebdc9db2d5.tar.bz2
stackbin-171ec414ae74564e2c6f7a6e7da7f0ebdc9db2d5.zip
add initial system-ready values and install steps
Diffstat (limited to 'extra/pip-helper.sh')
-rw-r--r--extra/pip-helper.sh1
1 files changed, 0 insertions, 1 deletions
diff --git a/extra/pip-helper.sh b/extra/pip-helper.sh
index 499ef3b..2cc1346 100644
--- a/extra/pip-helper.sh
+++ b/extra/pip-helper.sh
@@ -7,7 +7,6 @@ id="$( echo "${contents}" | sed -n -e '1p' )"
version_id="$( echo "${contents}" | sed -n -e '2p' )"
echo "Any parameters sent to this script ${0} will be added to the list of packages to install."
-echo "This is particularly useful for adding the PyGObject for icon support on EL7."
piplist="${1}"
if echo "${id}" | grep -qiE 'rhel|centos' ;
bgstack15