Updated the python to work on non-Windows
authorMatthew Leibowitz <mattleibow@live.com>
Tue, 29 Aug 2017 14:09:04 +0000 (16:09 +0200)
committerMatthew Leibowitz <mattleibow@live.com>
Tue, 29 Aug 2017 14:09:04 +0000 (16:09 +0200)
gn/find_msvc_root.py
gn/find_windk.py

index 69a3a25..4c7a2d8 100644 (file)
@@ -16,7 +16,7 @@ if msvc == 2015:
 else:
   # get the first version
   root = windk + '/VC/Tools/MSVC/'
-  for vc_dir in os.listdir(root):
-    print root + vc_dir
-    sys.exit(0)
-  sys.exit(1)
+  if os.path.exists(root):
+    for vc_dir in os.listdir(root):
+      print root + vc_dir
+      sys.exit(0)
index 4489464..f0ee79e 100644 (file)
@@ -26,4 +26,3 @@ else:
     if os.path.exists(root + edition):
       print root + edition
       sys.exit(0)
-  sys.exit(1)