Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(787)

Unified Diff: build/util/lastchange.py

Issue 6265031: lastchange: use shell=True on Windows (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/util/lastchange.py
diff --git a/build/util/lastchange.py b/build/util/lastchange.py
index 7c34fbea3b41f50014c36858b12c2613d9cefc50..c7200f1e25165494192e35bd6bdeaffc03067175 100755
--- a/build/util/lastchange.py
+++ b/build/util/lastchange.py
@@ -60,7 +60,8 @@ def FetchSVNRevision(directory):
proc = subprocess.Popen(['svn', 'info'],
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
- cwd=directory)
+ cwd=directory,
+ shell=(sys.platform=='win32'))
except OSError:
# command is apparently either not installed or not executable.
return None
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698