@uofx/cli 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -136,7 +136,8 @@ let WslUpdaterService = class WslUpdaterService {
|
|
|
136
136
|
try {
|
|
137
137
|
// 統一使用 --update,適用於所有 Windows 版本
|
|
138
138
|
const builder = command_builder_1.CommandBuilder.create('wsl')
|
|
139
|
-
.wslCmd('--update')
|
|
139
|
+
.wslCmd('--update')
|
|
140
|
+
.inheritStdio();
|
|
140
141
|
const result = await builder.exec(this.commandExecutor);
|
|
141
142
|
const cmdOutput = result.stdout + result.stderr;
|
|
142
143
|
if (result.exitCode !== 0) {
|