diff options
author | partouf <partouf@gmail.com> | 2024-02-10 13:40:10 +0100 |
---|---|---|
committer | partouf <partouf@gmail.com> | 2024-02-10 13:40:10 +0100 |
commit | b699a659845a3665695b881ccb0c1e9632183412 (patch) | |
tree | 5b5c16314b02d932ce6dc276d784e5b3093ef61b | |
parent | 967e1dcf7d6e9172ee61192e69187954e1079e45 (diff) | |
download | compiler-explorer-gh-10557.tar.gz compiler-explorer-gh-10557.zip |
fixgh-10557
-rw-r--r-- | lib/base-compiler.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/base-compiler.ts b/lib/base-compiler.ts index 5b4e5909a..1dea12fe0 100644 --- a/lib/base-compiler.ts +++ b/lib/base-compiler.ts @@ -504,7 +504,7 @@ export class BaseCompiler implements ICompiler { const result = await this.exec(compiler, options, execOptions); return { ...result, - inputFilename: utils.maskRootdir(inputFilename), + inputFilename: inputFilename, }; } |