Merge pull request #444 from Brikaa/code-files
Nix Piston: Only pass code files to compiling
This commit is contained in:
commit
04de31b946
|
@ -237,7 +237,7 @@ class Job {
|
||||||
if (this.runtime.compiled) {
|
if (this.runtime.compiled) {
|
||||||
compile = await this.safe_call(
|
compile = await this.safe_call(
|
||||||
this.runtime.compile,
|
this.runtime.compile,
|
||||||
this.files.map(x => x.name),
|
code_files.map(x => x.name),
|
||||||
this.timeouts.compile,
|
this.timeouts.compile,
|
||||||
this.memory_limits.compile
|
this.memory_limits.compile
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue