complete 2399.rs and rename storage/zeta/rust to rs

This commit is contained in:
2025-05-12 17:33:34 +09:00
parent 941f2f4cbd
commit e69f760f60
4 changed files with 40 additions and 3 deletions

4
run.py
View File

@@ -203,13 +203,15 @@ def run(from_: str, target: str, verbose: bool):
# build
try:
subprocess.run(
s = subprocess.run(
from_language.build_command,
check=True,
capture_output=True,
text=True,
cwd=from_language.working_dir,
)
print(s.stderr)
except subprocess.CalledProcessError as e:
click.echo(">>>>>> [Error while BUILD process] >>>>>>")
raise click.ClickException(e.stderr)