This repository was archived by the owner on Feb 2, 2021. It is now read-only.
File tree 2 files changed +7
-3
lines changed
2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -316,12 +316,14 @@ interface ISysInfoData {
316
316
androidInstalled : boolean ;
317
317
/** mono version, relevant on Mac only **/
318
318
monoVer : string ;
319
- /** git version string, as retunrnes by `git --version` **/
319
+ /** git version string, as returned by `git --version` **/
320
320
gitVer : string ;
321
- /** gradle version string as retunrnes by `gradle -v` **/
321
+ /** gradle version string as returned by `gradle -v` **/
322
322
gradleVer : string ;
323
- /** javac version string as retunrnes by `javac -version` **/
323
+ /** javac version string as returned by `javac -version` **/
324
324
javacVersion : string ;
325
+ /** pod version string, as returned by `pod --version` **/
326
+ cocoapodVer : string ;
325
327
}
326
328
327
329
interface ISysInfo {
Original file line number Diff line number Diff line change @@ -53,6 +53,8 @@ export class SysInfo implements ISysInfo {
53
53
res . xcodeVer = this . $hostInfo . isDarwin ? this . exec ( "xcodebuild -version" ) : null ;
54
54
res . itunesInstalled = this . $iTunesValidator . getError ( ) . wait ( ) === null ;
55
55
56
+ res . cocoapodVer = this . $hostInfo . isDarwin ? this . exec ( "pod --version" ) : null ;
57
+
56
58
procOutput = this . exec ( "adb version" ) ;
57
59
res . adbVer = procOutput ? procOutput . split ( os . EOL ) [ 0 ] : null ;
58
60
You can’t perform that action at this time.
0 commit comments