Переглянути джерело

Merge pull request #12 from Guozhanxin/5.0.0

修复5.0.0和芯片支持包机制不匹配的问题
shiwei 2 роки тому
батько
коміт
af9bac0126
1 змінених файлів з 0 додано та 6 видалено
  1. 0 6
      tools/eclipse.py

+ 0 - 6
tools/eclipse.py

@@ -55,12 +55,6 @@ def CollectPaths(paths):
         path = path.replace('\\', '/')
         all_paths = all_paths + [path] + ParentPaths(path)
 
-    cwd = os.getcwd()
-    for path in os.listdir(cwd):
-        temp_path = cwd.replace('\\', '/') + '/' + path
-        if os.path.isdir(temp_path):
-            all_paths = all_paths + [temp_path]
-
     all_paths = list(set(all_paths))
     return sorted(all_paths)