Skip to content

Commit

Permalink
Fix installer again (snipe#2370)
Browse files Browse the repository at this point in the history
I hate bash... anyone else want to maintain this? :)
  • Loading branch information
dmeltzer authored and snipe committed Aug 1, 2016
1 parent b6986ad commit c9d3cd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion snipeit.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ elif [ -f /etc/os-release ]; then
#Order is important here. If /etc/os-release and /etc/centos-release exist, we're on centos 7.
#If only /etc/centos-release exist, we're on centos6(or earlier). Centos-release is less parsable,
#so lets assume that it's version 6 (Plus, who would be doing a new install of anything on centos5 at this point..)
elif [ -f /etc/centos-release]; then
elif [ -f /etc/centos-release ]; then
distro="Centos"
version="6"
else
Expand Down

0 comments on commit c9d3cd7

Please sign in to comment.