Chromium Code Reviews| Index: update_depot_tools |
| =================================================================== |
| --- update_depot_tools (revision 82118) |
| +++ 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 }}'` |
| + svn info "$base_dir" | \ |
|
M-A Ruel
2011/04/19 17:49:25
Can you add LANGUAGE=en otherwise it won't work he
|
| + awk -F': ' '{ if ($1 == "Last Changed Rev") { print $2 }}' |
| } |
| # Update git checkouts. |