We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
undefined is not a function
1 parent 8d93603 commit ea3d92fCopy full SHA for ea3d92f
lib/services/doctor-service.ts
@@ -117,7 +117,7 @@ class DoctorService implements IDoctorService {
117
"pod 'AFNetworking', '~> 1.0'\n"
118
).wait();
119
120
- spinner.update("Verifying CocoaPods. This may take some time, please be patient.");
+ spinner.message("Verifying CocoaPods. This may take some time, please be patient.");
121
spinner.start();
122
let future = this.$childProcess.spawnFromEvent(
123
this.$config.USE_POD_SANDBOX ? "sandbox-pod": "pod",
@@ -131,6 +131,7 @@ class DoctorService implements IDoctorService {
131
132
return !(this.$fs.exists(path.join(iosDir, "__PROJECT_NAME__.xcworkspace")).wait());
133
} catch(err) {
134
+ this.$logger.trace(`verifyCocoaPods error: ${err}`);
135
return true;
136
} finally {
137
spinner.stop();
0 commit comments