Skip to content

Commit 1753847

Browse files
committed
await uninstall command
1 parent 31e8210 commit 1753847

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/installer.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export class CocoapodsInstaller {
1212
}
1313

1414
// Remove pre-installed version of Cocoapods
15-
exec.exec("gem", ["uninstall", "cocoapods", "--all", "--executables", "--ignore-dependencies"]);
15+
await exec.exec("gem", ["uninstall", "cocoapods", "--all", "--executables", "--ignore-dependencies"]);
1616

1717
// Install new version of Cocoapods
1818
const versionArguments = (versionSpec === "latest") ? [] : ["-v", versionSpec];

0 commit comments

Comments
 (0)