fix: change the install output to include the executable path (#9797)

This commit is contained in:
Alex Rudenko 2023-03-07 16:30:32 +01:00 committed by GitHub
parent 47ffec5e00
commit 8cca7bb7a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -100,7 +100,14 @@ export class CLI {
), ),
}); });
console.log( console.log(
`${args.browser.name}@${args.browser.buildId} downloaded successfully.` `${args.browser.name}@${
args.browser.buildId
} ${computeExecutablePath({
browser: args.browser.name,
buildId: args.browser.buildId,
cacheDir: args.path ?? this.#cachePath,
platform: args.platform,
})}`
); );
} }
) )