diff options
author | Jeremy Rifkin <51220084+jeremy-rifkin@users.noreply.github.com> | 2023-02-22 17:45:55 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-22 17:45:55 -0500 |
commit | 563b220cb9243ea19a49cfe82cf9fcadda79b600 (patch) | |
tree | 158e3737e83ca4e3c00f647a13c74b070549e315 /lib/compilers/dosbox-compiler.ts | |
parent | 17ac75facd403c7f476546707645989191fe4864 (diff) | |
download | compiler-explorer-563b220cb9243ea19a49cfe82cf9fcadda79b600.tar.gz compiler-explorer-563b220cb9243ea19a49cfe82cf9fcadda79b600.zip |
Type work for some handlers and stuff related to the compiler-finder (#4752)gh-6407
Diffstat (limited to 'lib/compilers/dosbox-compiler.ts')
-rw-r--r-- | lib/compilers/dosbox-compiler.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/compilers/dosbox-compiler.ts b/lib/compilers/dosbox-compiler.ts index b0719b831..82fa9d795 100644 --- a/lib/compilers/dosbox-compiler.ts +++ b/lib/compilers/dosbox-compiler.ts @@ -27,7 +27,7 @@ import path from 'path'; import fs from 'fs-extra'; import {ExecutionOptions} from '../../types/compilation/compilation.interfaces'; -import {CompilerInfo} from '../../types/compiler.interfaces'; +import {PreliminaryCompilerInfo} from '../../types/compiler.interfaces'; import {BaseCompiler} from '../base-compiler'; import * as exec from '../exec'; import {logger} from '../logger'; @@ -37,7 +37,7 @@ export class DosboxCompiler extends BaseCompiler { private readonly dosbox: string; private readonly root: string; - constructor(compilerInfo: CompilerInfo, env) { + constructor(compilerInfo: PreliminaryCompilerInfo, env) { super(compilerInfo, env); this.dosbox = this.compilerProps<string>(`compiler.${this.compiler.id}.dosbox`); |