ignore stdout noise from react-native init and pod
This commit is contained in:
parent
8e4f4e48c7
commit
b2eda4b11d
|
@ -57,13 +57,13 @@ init = (projName) ->
|
||||||
execSync 'lein cljsbuild once dev'
|
execSync 'lein cljsbuild once dev'
|
||||||
|
|
||||||
log 'Creating React Native skeleton'
|
log 'Creating React Native skeleton'
|
||||||
execSync "#{ binPath }react-native init #{ projName }"
|
execSync "#{ binPath }react-native init #{ projName }", stdio: 'ignore'
|
||||||
execSync "mv #{ projName } iOS"
|
execSync "mv #{ projName } iOS"
|
||||||
|
|
||||||
log 'Installing Pod dependencies'
|
log 'Installing Pod dependencies'
|
||||||
process.chdir 'iOS'
|
process.chdir 'iOS'
|
||||||
execSync "cp #{ resources }Podfile ."
|
execSync "cp #{ resources }Podfile ."
|
||||||
execSync 'pod install'
|
execSync 'pod install', stdio: 'ignore'
|
||||||
|
|
||||||
log 'Updating Xcode project'
|
log 'Updating Xcode project'
|
||||||
for ext in ['m', 'h']
|
for ext in ['m', 'h']
|
||||||
|
|
Loading…
Reference in New Issue