Skip to content

Commit

Permalink
check console message
Browse files Browse the repository at this point in the history
Signed-off-by: msivasubramaniaan <[email protected]>
  • Loading branch information
msivasubramaniaan committed Mar 4, 2024
1 parent ce5458c commit a969d1b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build/install-vscode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { platform } from 'os';
import { dirname, join } from 'path';
import { downloadAndUnzipVSCode } from '@vscode/test-electron';

downloadAndUnzipVSCode()
const step = downloadAndUnzipVSCode()
.then((executable: string): void => {
let exe: string = executable;
if (platform() === 'darwin') {
Expand All @@ -21,3 +21,5 @@ downloadAndUnzipVSCode()
})
// eslint-disable-next-line no-console, @typescript-eslint/restrict-template-expressions
.catch((err) => console.log(`There was an error while downloading and unzipping, error = ${err}`));
// eslint-disable-next-line no-console
console.log('Install message::', step);

0 comments on commit a969d1b

Please sign in to comment.