Skip to content

Commit 5a0017f

Browse files
author
Vladimir Enchev
committed
message updated
1 parent 221f49d commit 5a0017f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/services/ios-project-service.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -860,7 +860,7 @@ export class IOSProjectService extends projectServiceBaseLib.PlatformProjectServ
860860
return (() => {
861861
let xcprojInfo = this.$xcprojService.getXcprojInfo().wait();
862862
if (xcprojInfo.shouldUseXcproj && !xcprojInfo.xcprojAvailable) {
863-
let errorMessage = `You are using CocoaPods version ${xcprojInfo.cocoapodVer} which does not support Xcode ${xcprojInfo.xcodeVersion.major}.${xcprojInfo.xcodeVersion.minor} yet.${EOL}In order for the NativeScript CLI to be able to work correctly with this setup you need to install xcproj command line tool and add it to your PATH. Xcproj can be installed with homebrew by running $ brew install xcproj from the terminal`;
863+
let errorMessage = `You are using CocoaPods version ${xcprojInfo.cocoapodVer} which does not support Xcode ${xcprojInfo.xcodeVersion.major}.${xcprojInfo.xcodeVersion.minor} yet.${EOL}${EOL}You can update your cocoapods by running $sudo gem install cocoapods --pre from a terminal.${EOL}${EOL}In order for the NativeScript CLI to be able to work correctly with this setup you need to install xcproj command line tool and add it to your PATH. Xcproj can be installed with homebrew by running $ brew install xcproj from the terminal`;
864864

865865
this.$errors.failWithoutHelp(errorMessage);
866866

lib/services/xcproj-service.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class XcprojService implements IXcprojService {
1919
return ((): boolean => {
2020
let xcprojInfo = this.getXcprojInfo().wait();
2121
if (xcprojInfo.shouldUseXcproj && !xcprojInfo.xcprojAvailable) {
22-
let errorMessage = `You are using CocoaPods version ${xcprojInfo.cocoapodVer} which does not support Xcode ${xcprojInfo.xcodeVersion.major}.${xcprojInfo.xcodeVersion.minor} yet.${EOL}In order for the NativeScript CLI to be able to work correctly with this setup you need to install xcproj command line tool and add it to your PATH. Xcproj can be installed with homebrew by running $ brew install xcproj from the terminal`;
22+
let errorMessage = `You are using CocoaPods version ${xcprojInfo.cocoapodVer} which does not support Xcode ${xcprojInfo.xcodeVersion.major}.${xcprojInfo.xcodeVersion.minor} yet.${EOL}${EOL}You can update your cocoapods by running $sudo gem install cocoapods --pre from a terminal.${EOL}${EOL}In order for the NativeScript CLI to be able to work correctly with this setup you need to install xcproj command line tool and add it to your PATH. Xcproj can be installed with homebrew by running $ brew install xcproj from the terminal`;
2323
if (shouldFail) {
2424
this.$errors.failWithoutHelp(errorMessage);
2525
} else {

0 commit comments

Comments
 (0)