Changeset 7209
- Timestamp:
- Nov 30, 2008, 7:19:48 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/1.4x/macosx/version.sh
r7205 r7209 16 16 cut -d"$Id:" -f3 | cut -d" " -f3 | sort -n | tail -n 1` 17 17 18 #dirty fix to ensure the highest version number is found 18 #dirty fix to ensure the highest version number is found when running release_builder.sh 19 19 SVN_REVISION_MAC=`find ./macosx -name "*\.[chmp]" -o -name "*\.cpp" -o -name "*\.po" -o -name "*\.sh" | \ 20 20 xargs grep "\$Id:" | \ … … 22 22 cut -d"$Id:" -f3 | cut -d" " -f3 | sort -n | tail -n 1` 23 23 24 if SVN_REVISION_MAC > SVN_REVISION; then 25 SVN_REVISION = SVN_REVISION_MAC 24 if [ $SVN_REVISION_MAC -gt $SVN_REVISION ] 25 then 26 SVN_REVISION=$SVN_REVISION_MAC 26 27 fi 27 28
Note: See TracChangeset
for help on using the changeset viewer.