Fix java compile error

This commit is contained in:
李扬 2018-10-18 10:33:05 +08:00 committed by GitHub
parent c496fc4aae
commit 69cebafad2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 2 deletions

View File

@ -76,8 +76,13 @@ class JudgeServer:
exe_path = Compiler().compile(compile_config=compile_config,
src_path=src_path,
output_dir=submission_dir)
os.chown(exe_path, RUN_USER_UID, 0)
os.chmod(exe_path, 0o500)
try:
# Java exe_path is SOME_PATH/Main, but the real path is SOME_PATH/Main.class
# We ignore it temporarily
os.chown(exe_path, RUN_USER_UID, 0)
os.chmod(exe_path, 0o500)
except Exception:
pass
else:
exe_path = os.path.join(submission_dir, run_config["exe_name"])
with open(exe_path, "w", encoding="utf-8") as f: