We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efd71e9 commit 0674b46Copy full SHA for 0674b46
emsdk.py
@@ -1490,7 +1490,10 @@ def fetch_nightly_node_versions():
1490
1491
def dir_installed_nightly_node_versions():
1492
path = os.path.abspath('node')
1493
- return [name for name in os.listdir(path) if os.path.isdir(os.path.join(path, name)) and name.startswith("nightly-")]
+ try:
1494
+ return [name for name in os.listdir(path) if os.path.isdir(os.path.join(path, name)) and name.startswith("nightly-")]
1495
+ except Exception:
1496
+ return []
1497
1498
1499
def extract_newest_node_nightly_version(versions):
0 commit comments