Fix inability to run interpreted languages

This commit is contained in:
akp 2023-12-16 12:24:50 +00:00
parent bfe2450ecc
commit 4f7b3f4da6
No known key found for this signature in database
GPG key ID: CF8D58F3DEB20755

2
aoc
View file

@ -163,7 +163,7 @@ def get_runner_command(
if runner_build is None:
if runner_run is not None:
return runner_run + [file_name]
return runner_run + [file_name], None
print(f"No build or run command specified for runner {file_extension}")
raise SystemExit(1)