mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Changed: Use egrep because grep syntax different under OS X
This commit is contained in:
parent
de0cb9fd2e
commit
546bf3c7a1
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
|
||||
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" ]
|
||||
then
|
||||
|
|
Loading…
Reference in a new issue