Commit e7652d2c by Craig Heffner

Fixed deps.sh bug

parent b9432608
#!/bin/bash
# Check for the --yes command line argument to skip yes/no prompts
if [ "$1" = "--yes" ]
then
YES=1
else
YES=0
fi
set -o nounset
REQUIRED_UTILS="wget tar python"
......@@ -14,14 +23,6 @@ APT_CANDIDATES="$APT_CANDIDATES $PYTHON2_APT_CANDIDATES"
YUM_CANDIDATES="$YUM_CANDIDATES $PYTHON2_YUM_CANDIDATES"
PIP_COMMANDS="pip"
# Check for the --yes command line argument
if [ "$1" == "--yes" ]
then
YES=1
else
YES=0
fi
# Check for root privileges
if [ $UID -eq 0 ]
then
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment