Skip to content

Commit

Permalink
check
Browse files Browse the repository at this point in the history
  • Loading branch information
databasedav committed Nov 16, 2024
1 parent 479493d commit 9d4a862
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
10 changes: 9 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
{
// "rust-analyzer.cargo.target": "wasm32-unknown-unknown",
"rust-analyzer.cargo.noDefaultFeatures": true,
"rust-analyzer.cargo.features": []
"rust-analyzer.cargo.features": [],
"filewatcher.commands": [
{
"match": ".*.ncl$",
// need to suppress stderr output, because otherwise file watcher extension complains
"cmd": "cd haalka && just sync_nickels 2> /dev/null",
"event": "onFileChange"
}
]
}
2 changes: 1 addition & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export_nickels := "ci pr_previews preview_deploy release"

# TODO: use https://github.com/rhysd/actionlint after
sync_nickels:
for nickel in {{ export_nickels }}; do \
@for nickel in {{ export_nickels }}; do \
echo "# generated by nickel/$nickel.ncl; do not manually edit" > ./.github/workflows/$nickel.yaml; \
just export_nickel $nickel >> ./.github/workflows/$nickel.yaml; \
done

0 comments on commit 9d4a862

Please sign in to comment.