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

Unified Diff: third_party/clang_format/bin/rm_binaries.py

Issue 376833003: Really remove clang-format binaries (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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: third_party/clang_format/bin/rm_binaries.py
diff --git a/third_party/clang_format/bin/rm_binaries.py b/third_party/clang_format/bin/rm_binaries.py
index 858e9ccb54100f2211779ff6a97bc062da660443..3730dbd0ce16479f2872e95bfd7d164cf7a64b63 100644
--- a/third_party/clang_format/bin/rm_binaries.py
+++ b/third_party/clang_format/bin/rm_binaries.py
@@ -22,17 +22,17 @@ bin_dir = os.path.dirname(__file__)
# but ignore all errors.
try:
- os.remove(os.path.join(bin_dir, "linux", "clang_format"))
+ os.remove(os.path.join(bin_dir, "linux", "clang-format"))
except:
pass
try:
- os.remove(os.path.join(bin_dir, "mac", "clang_format"))
+ os.remove(os.path.join(bin_dir, "mac", "clang-format"))
except:
pass
try:
- os.remove(os.path.join(bin_dir, "win", "clang_format.exe"))
+ os.remove(os.path.join(bin_dir, "win", "clang-format.exe"))
except:
pass
« 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