add .code extension to files without file names
This commit is contained in:
parent
16f123233b
commit
aeda95a215
|
@ -21,7 +21,7 @@ class Job {
|
||||||
this.uuid = uuidv4();
|
this.uuid = uuidv4();
|
||||||
this.runtime = runtime;
|
this.runtime = runtime;
|
||||||
this.files = files.map((file,i) => ({
|
this.files = files.map((file,i) => ({
|
||||||
name: file.name || `file${i}`,
|
name: file.name || `file${i}.code`,
|
||||||
content: file.content
|
content: file.content
|
||||||
}));
|
}));
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue