aboutsummaryrefslogtreecommitdiff
path: root/lib/compilers/pascal-win.ts
diff options
context:
space:
mode:
authorJeremy Rifkin <51220084+jeremy-rifkin@users.noreply.github.com>2023-06-28 07:15:24 -0500
committerGitHub <noreply@github.com>2023-06-28 08:15:24 -0400
commitddb4ed8c054a6e6a07d431ee40b95111e5a31695 (patch)
treee1e9587fc82efe8534793af2215b6a39a1b6b14a /lib/compilers/pascal-win.ts
parent3638f6026c7a756ae1591a02112e3bb59627c48e (diff)
downloadcompiler-explorer-ddb4ed8c054a6e6a07d431ee40b95111e5a31695.tar.gz
compiler-explorer-ddb4ed8c054a6e6a07d431ee40b95111e5a31695.zip
Improve the type of ExecutionOptions.env (#5206)gh-8009
Diffstat (limited to 'lib/compilers/pascal-win.ts')
-rw-r--r--lib/compilers/pascal-win.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compilers/pascal-win.ts b/lib/compilers/pascal-win.ts
index ca7d2747c..e73d0335b 100644
--- a/lib/compilers/pascal-win.ts
+++ b/lib/compilers/pascal-win.ts
@@ -151,7 +151,7 @@ export class PascalWinCompiler extends BaseCompiler {
compiler: string,
options: string[],
inputFilename: string,
- execOptions: ExecutionOptions,
+ execOptions: ExecutionOptions & {env: Record<string, string>},
) {
if (!execOptions) {
execOptions = this.getDefaultExecOptions();