Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: accommodate recent pymake changes #26

Merged
merged 7 commits into from
Feb 18, 2024
Prev Previous commit
Next Next commit
remove unnecessary --path arg for make-code-json, run black/isort
  • Loading branch information
wpbonelli committed Feb 18, 2024
commit 3d76dad6eda5c8389e79bed35e513f31139bec95
7 changes: 3 additions & 4 deletions scripts/build_programs.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import argparse
import sys
import subprocess
import sys
import textwrap
from pathlib import Path

Expand Down Expand Up @@ -112,9 +112,8 @@ def run_cmd(args) -> bool:
assert run_cmd(
[
"make-code-json",
"-ad", str(path),
"-f",
str(path / "code.json"),
"-ad",
str(path),
"--verbose",
wpbonelli marked this conversation as resolved.
Show resolved Hide resolved
]
), "could not make code.json"
Expand Down
Loading