diff options
author | ASDAlexander77 <duzhar@googlemail.com> | 2023-06-01 18:57:19 +0100 |
---|---|---|
committer | ASDAlexander77 <duzhar@googlemail.com> | 2023-06-01 18:57:19 +0100 |
commit | 7e45fa9f2e6bc1e138389aad3c5b3d6fe3294d79 (patch) | |
tree | 02829d22f6e4c298b72e2cdd960e4039992f3d42 /lib/compilers/typescript-native.ts | |
parent | 93b6b4b96f6404494f9ff8ec4969afdb6854aed1 (diff) | |
download | compiler-explorer-7e45fa9f2e6bc1e138389aad3c5b3d6fe3294d79.tar.gz compiler-explorer-7e45fa9f2e6bc1e138389aad3c5b3d6fe3294d79.zip |
double quote fix
Diffstat (limited to 'lib/compilers/typescript-native.ts')
-rw-r--r-- | lib/compilers/typescript-native.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compilers/typescript-native.ts b/lib/compilers/typescript-native.ts index d09a018e5..5923fc6fb 100644 --- a/lib/compilers/typescript-native.ts +++ b/lib/compilers/typescript-native.ts @@ -108,7 +108,7 @@ export class TypeScriptNativeCompiler extends BaseCompiler { const newVersion = parseInt(this.tscVersion) >= 33; if (newVersion) { - newOptions = ['--emit=llvm', "-o=-", inputFilename]; + newOptions = ['--emit=llvm', '-o=-', inputFilename]; } if (!this.tscSharedLib) { |