Skip to content

Commit 4c026a6

Browse files
fix: fail to check go-ios installation
1 parent 23e7d79 commit 4c026a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ios.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ export class IosRobot implements Robot {
199199

200200
export class IosManager {
201201

202-
public async isGoIosInstalled(): Promise<boolean> {
202+
public isGoIosInstalled(): boolean {
203203
try {
204204
const output = execFileSync(getGoIosPath(), ["version"], { stdio: ["pipe", "pipe", "ignore"] }).toString();
205205
const json: VersionCommandOutput = JSON.parse(output);

0 commit comments

Comments
 (0)