ignore stdout noise from react-native init and pod

This commit is contained in:
Dan Motzenbecker 2015-08-25 21:56:28 -04:00
parent 8e4f4e48c7
commit b2eda4b11d
1 changed files with 2 additions and 2 deletions

View File

@ -57,13 +57,13 @@ init = (projName) ->
execSync 'lein cljsbuild once dev'
log 'Creating React Native skeleton'
execSync "#{ binPath }react-native init #{ projName }"
execSync "#{ binPath }react-native init #{ projName }", stdio: 'ignore'
execSync "mv #{ projName } iOS"
log 'Installing Pod dependencies'
process.chdir 'iOS'
execSync "cp #{ resources }Podfile ."
execSync 'pod install'
execSync 'pod install', stdio: 'ignore'
log 'Updating Xcode project'
for ext in ['m', 'h']