diff options
author | Jeremy Rifkin <51220084+jeremy-rifkin@users.noreply.github.com> | 2023-06-28 07:15:24 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-28 08:15:24 -0400 |
commit | ddb4ed8c054a6e6a07d431ee40b95111e5a31695 (patch) | |
tree | e1e9587fc82efe8534793af2215b6a39a1b6b14a /lib/compilers/fortran.ts | |
parent | 3638f6026c7a756ae1591a02112e3bb59627c48e (diff) | |
download | compiler-explorer-ddb4ed8c054a6e6a07d431ee40b95111e5a31695.tar.gz compiler-explorer-ddb4ed8c054a6e6a07d431ee40b95111e5a31695.zip |
Improve the type of ExecutionOptions.env (#5206)gh-8009
Diffstat (limited to 'lib/compilers/fortran.ts')
-rw-r--r-- | lib/compilers/fortran.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compilers/fortran.ts b/lib/compilers/fortran.ts index f761e1e3e..da2e9b53a 100644 --- a/lib/compilers/fortran.ts +++ b/lib/compilers/fortran.ts @@ -46,7 +46,7 @@ export class FortranCompiler extends BaseCompiler { compiler: string, options: string[], inputFilename: string, - execOptions: ExecutionOptions, + execOptions: ExecutionOptions & {env: Record<string, string>}, ): Promise<CompilationResult> { if (!execOptions) { execOptions = this.getDefaultExecOptions(); |