Skip to content

Commit edf81df

Browse files
committed
chore: Fix make run command
1 parent 2cb37a7 commit edf81df

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/make.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ def main(args: list[str]) -> int:
296296
if not args:
297297
print("make: run: missing command", file=sys.stderr)
298298
return 1
299-
run("default", *args) # ty: ignore[missing-argument]
299+
run(*args) # ty: ignore[missing-argument]
300300
return 0
301301

302302
if cmd == "multirun":

0 commit comments

Comments
 (0)