Changed: Use egrep because grep syntax different under OS X
This commit is contained in:
parent
aea1dbb292
commit
b4e4f87b9b
1 changed files with 1 additions and 1 deletions
2
dist/debian/ryzomcore_version.sh
vendored
2
dist/debian/ryzomcore_version.sh
vendored
|
@ -21,7 +21,7 @@ parse_version()
|
||||||
FILE=$2
|
FILE=$2
|
||||||
VAR=$3
|
VAR=$3
|
||||||
|
|
||||||
V=$(grep -o -P $PREFIX"_$VAR [0-9]+" $FILE | awk '{print $2}' | head -n 1)
|
V=$(egrep -o $PREFIX"_$VAR [0-9]+" $FILE | awk '{print $2}' | head -n 1)
|
||||||
|
|
||||||
if [ -z "$V" ]
|
if [ -z "$V" ]
|
||||||
then
|
then
|
||||||
|
|
Loading…
Reference in a new issue