diff options
| author | David Barsky <me@davidbarsky.com> | 2023-03-09 15:27:24 -0500 |
|---|---|---|
| committer | David Barsky <me@davidbarsky.com> | 2023-03-13 13:30:19 -0400 |
| commit | 46e022098feda31c98120ca58b6ce02b45cdedf9 (patch) | |
| tree | 46f454538a452420198ce2f509ea9455a38d6bd2 /editors/code/src/util.ts | |
| parent | 8af3d6367ecead0abf80e697176f697d97c25215 (diff) | |
| download | rust-46e022098feda31c98120ca58b6ce02b45cdedf9.tar.gz rust-46e022098feda31c98120ca58b6ce02b45cdedf9.zip | |
fmt
Diffstat (limited to 'editors/code/src/util.ts')
| -rw-r--r-- | editors/code/src/util.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editors/code/src/util.ts b/editors/code/src/util.ts index d2ecdce5b4e..922fbcbcf35 100644 --- a/editors/code/src/util.ts +++ b/editors/code/src/util.ts @@ -150,7 +150,7 @@ export function memoizeAsync<Ret, TThis, Param extends string>( /** Awaitable wrapper around `child_process.exec` */ export function execute(command: string, options: ExecOptions): Promise<string> { - log.info(`running command: ${command}`) + log.info(`running command: ${command}`); return new Promise((resolve, reject) => { exec(command, options, (err, stdout, stderr) => { if (err) { @@ -170,7 +170,7 @@ export function execute(command: string, options: ExecOptions): Promise<string> } export function executeDiscoverProject(command: string, options: ExecOptions): Promise<string> { - log.info(`running command: ${command}`) + log.info(`running command: ${command}`); return new Promise((resolve, reject) => { exec(command, options, (err, stdout, _) => { if (err) { |
