Commit f0e2c72d authored by Immortalin's avatar Immortalin

Fix potential error due to naming

parent e1d06cd3
......@@ -445,8 +445,13 @@ if __name__ == "__main__":
https://developers.google.com/blockly/hacking/closure""")
sys.exit(1)
search_paths = calcdeps.ExpandDirectories(
try:
search_paths = calcdeps.ExpandDirectories(
["core", os.path.join(os.path.pardir, "closure-library")])
except Exception as e:
search_paths = calcdeps.ExpandDirectories(
["core", os.path.join(os.path.pardir, "google-closure-library")])
# Run both tasks in parallel threads.
# Uncompressed is limited by processor speed.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment