judge: bug fix (#462)

pull/456/head
panda 2 years ago committed by GitHub
parent 17def9cbb5
commit f65aba6d27
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -29,6 +29,6 @@
// Comment out to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
"remoteUser": "root",
"features": {
"git": "latest"
"ghcr.io/devcontainers/features/git:1": {}
}
}
}

@ -1,7 +1,7 @@
{
"name": "@hydrooj/hydrojudge",
"bin": "bin/hydrojudge.js",
"version": "3.1.6",
"version": "3.1.7",
"main": "package.json",
"author": "undefined <i@undefined.moe>",
"repository": "https://github.com/hydro-dev/Hydro.git",

@ -84,7 +84,7 @@ function proc(params: Parameter): Cmd {
return {
args: parseArgs(params.execute || ''),
env: [
...getConfig('env').split('\n').map((i) => i.trim()).filter((i) => i.startsWith('#')),
...getConfig('env').split('\n').map((i) => i.trim()).filter((i) => !i.startsWith('#')),
...Object.entries(params.env || {}).map(([k, v]) => `${k}=${v.replace(/=/g, '\\=')}`),
],
files: [

Loading…
Cancel
Save