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 cc2a6b5 commit e61c1b0Copy full SHA for e61c1b0
Tools/build/compute-changes.py
@@ -194,7 +194,7 @@ def get_file_platform(file: Path) -> str | None:
194
return "ios"
195
if first_part in ANDROID_DIRS:
196
return "android"
197
- if len(file.parts) >= 2 and Path(*file.parts[:2]) in WASI_DIRS: # Tools/wasm/
+ if len(file.parts) >= 2 and Path(*file.parts[:2]) in WASI_DIRS:
198
return "wasi"
199
return None
200
0 commit comments