diff options
author | kevinjeon-g <136382173+kevinjeon-g@users.noreply.github.com> | 2024-02-05 22:27:59 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-05 21:27:59 -0600 |
commit | 3953a3b09c0e18915017ea2ce6e74046784cb845 (patch) | |
tree | b3d2980cfeccf911674568d868d0495328642736 /lib/compilers | |
parent | e589f1b7492f06f6a7e5d1a26ae4a670a6ee2a17 (diff) | |
download | compiler-explorer-3953a3b09c0e18915017ea2ce6e74046784cb845.tar.gz compiler-explorer-3953a3b09c0e18915017ea2ce6e74046784cb845.zip |
Update dex2oat version string (#6096)gh-10516
<!-- THIS COMMENT IS INVISIBLE IN THE FINAL PR, BUT FEEL FREE TO REMOVE
IT
Thanks for taking the time to improve CE. We really appreciate it.
Before opening the PR, please make sure that the tests & linter pass
their checks,
by running `make check`.
In the best case scenario, you are also adding tests to back up your
changes,
but don't sweat it if you don't. We can discuss them at a later date.
Feel free to append your name to the CONTRIBUTORS.md file
Thanks again, we really appreciate this!
-->
Diffstat (limited to 'lib/compilers')
-rw-r--r-- | lib/compilers/dex2oat.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compilers/dex2oat.ts b/lib/compilers/dex2oat.ts index 874c04687..28b8e3ebb 100644 --- a/lib/compilers/dex2oat.ts +++ b/lib/compilers/dex2oat.ts @@ -270,7 +270,7 @@ export class Dex2OatCompiler extends BaseCompiler { const versionFile = this.artArtifactDir + '/snapshot-creation-build-number.txt'; const version = fs.readFileSync(versionFile, {encoding: 'utf-8'}); return { - stdout: [version], + stdout: ['Android Build ' + version], stderr: [], }; } |