Index: update_depot_tools |
=================================================================== |
--- update_depot_tools (revision 82120) |
+++ update_depot_tools (working copy) |
@@ -44,7 +44,8 @@ |
# Get the current SVN revision. |
get_svn_revision() { |
- echo `svn info "$base_dir" | awk '{ if ($1 == "Revision:") { print $2 }}'` |
+ LANGUAGE=C svn info "$base_dir" | \ |
+ awk -F': ' '{ if ($1 == "Last Changed Rev") { print $2 }}' |
} |
# Update git checkouts. |