Skip to content
This repository was archived by the owner on Jun 30, 2022. It is now read-only.

Commit eda1e72

Browse files
authored
chery pick fix for bug fix (#2038)
1 parent 1eb8888 commit eda1e72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/botskills/src/utils/childProcessUtils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export class ChildProcessUtils {
3434
child_process.exec(
3535
`${command} ${args.join(' ')}`,
3636
(err: child_process.ExecException | null, stdout: string, stderr: string) => {
37-
if (stderr) {
37+
if (stderr && !stderr.includes('Update available')) {
3838
pReject(stderr);
3939
}
4040
pResolve(stdout);

0 commit comments

Comments
 (0)