summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorabarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-08-10 22:35:16 +0000
committerabarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-08-10 22:35:16 +0000
commit4677a941cc46922997d892ed289010bf411e2ef8 (patch)
treed68472f02f260726f146244b22d91b84ed6e5fc9
parent332bf4ae2b0ad749d29d011f881cbc9289233b3f (diff)
downloadchromium_src-4677a941cc46922997d892ed289010bf411e2ef8.zip
chromium_src-4677a941cc46922997d892ed289010bf411e2ef8.tar.gz
chromium_src-4677a941cc46922997d892ed289010bf411e2ef8.tar.bz2
/bin/true doesn't exist on Mac OS X. However, true seems to be in the path on Linux and Mac OS X, so let's use that.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@96233 0039d316-1c4b-4281-b951-d872f2087c98
-rwxr-xr-xtools/safely-roll-webkit.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/safely-roll-webkit.py b/tools/safely-roll-webkit.py
index 97260fb..6808291 100755
--- a/tools/safely-roll-webkit.py
+++ b/tools/safely-roll-webkit.py
@@ -58,7 +58,7 @@ def main():
print msg
# Silence the editor.
- os.environ['EDITOR'] = '/bin/true'
+ os.environ['EDITOR'] = 'true'
old_branch = scm.GIT.GetBranch(root_dir)
if old_branch == 'webkit_roll':