mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-20 02:38:39 +01:00
Merge pull request #70 from cheecheeo/master
Bugfix in Ubuntu install script
This commit is contained in:
commit
0dcaef4813
1 changed files with 2 additions and 1 deletions
|
@ -7,6 +7,7 @@ confirm() {
|
|||
|
||||
GIT='git'
|
||||
|
||||
LTS="Ubuntu 10.04"
|
||||
ISSUE=`cat /etc/issue`
|
||||
if [[ $ISSUE != Ubuntu* ]]
|
||||
then
|
||||
|
@ -14,7 +15,7 @@ then
|
|||
echo "to be something else. Your results may vary.";
|
||||
echo
|
||||
confirm
|
||||
elif [[ $ISSUE != "Ubuntu 10.04*" ]]
|
||||
elif [[ `expr match "$ISSUE" "$LTS"` -eq ${#LTS} ]]
|
||||
then
|
||||
GIT='git-core'
|
||||
fi
|
||||
|
|
Loading…
Add table
Reference in a new issue