Juanpe / Swift-VIPER-Module

Xcode template for VIPER Architecture written in Swift 4
542 stars 113 forks source link

Terminal installation error on Swift 4.0.3 XCode9 #16

Open acidmax76 opened 6 years ago

acidmax76 commented 6 years ago

install.swift:55:15: warning: 'characters' is deprecated: Please use String or Substring directly if output.characters.count > 0 {

danghung24031992 commented 6 years ago

replace it for if output.count > 0 {

n3at18 commented 4 years ago

the same error here, replaced with output.count > 0 and it works.

Would be nice if that can be fixed