Skip to content

Commit fd2e9c2

Browse files
Minor linter fixes (#2936)
* Lint the first source * Bump pure-eval for testing * Restore pure-eval
1 parent 0c34728 commit fd2e9c2

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/build_recipes.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ jobs:
5151
5252
build_recipes:
5353
runs-on: ubuntu-latest
54-
needs: lint_recipes
5554
env:
5655
TARGET_PLATFORM: emscripten-wasm32
5756
GITHUB_OWNER: "emscripten-forge"

emci/__main__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,8 @@ def lint(old: str, new: str):
9595
try:
9696
with open(meta_path) as f:
9797
meta = yaml.safe_load(f)
98+
if isinstance(meta.get('source'), list):
99+
meta['source'] = meta['source'][0]
98100
except Exception as e:
99101
print(f"❌ Failed to parse {meta_path}: {e}")
100102
failed = True

0 commit comments

Comments
 (0)