Merge pull request #490 from bcambl/fedora-armhf7

Fedora Support
This commit is contained in:
Dan Schaper 2016-06-29 14:25:23 -07:00 committed by GitHub
commit 024b741552
11 changed files with 428 additions and 68 deletions

View file

@ -19,7 +19,7 @@ else
echo "::: sudo will be used."
# Check if it is actually installed
# If it isn't, exit because the install cannot complete
if [[ $(dpkg-query -s sudo) ]];then
if [ -x "$(command -v sudo)" ];then
export SUDO="sudo"
else
echo "::: Please install sudo or run this script as root."