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

Unified Diff: gn.py

Issue 538393002: Make gn.py support root directories other than 'src'. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Created 6 years, 3 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
« gclient_utils.py ('K') | « gclient_utils.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gn.py
diff --git a/gn.py b/gn.py
index e3bcc978356f7e473387629fa57352efb3dff31b..833805fdd89d122134ba82f310cc1e3532e14db5 100755
--- a/gn.py
+++ b/gn.py
@@ -26,7 +26,10 @@ def main(args):
'checkout.')
sys.exit(1)
gn_path = os.path.join(bin_path, 'gn' + gclient_utils.GetExeSuffix())
- return subprocess.call([gn_path] + sys.argv[1:])
+ if not os.path.exists(gn_path):
+ print >> sys.stderr, 'gn.py: Could not find gn executable at: %s' % gn_path
agable 2014/09/05 11:31:53 return 1 after this print, for an unsuccessful exi
kjellander_chromium 2014/09/05 12:24:31 Done.
+ else:
+ return subprocess.call([gn_path] + sys.argv[1:])
if __name__ == '__main__':
« gclient_utils.py ('K') | « gclient_utils.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698