@@ -97,7 +97,7 @@ Promise.resolve()
97
97
. then ( ( message ) => execute ( 'git' , './ngtools-webpack-builds' , 'commit' , '-am' , message . substr ( 1 ) ) )
98
98
// Update the credentials using the GITHUB TOKEN.
99
99
. then ( ( ) => execute ( 'git' , './ngtools-webpack-builds' , 'config' , 'credential.helper' ,
100
- 'store' , ' --file=.git/credentials') )
100
+ 'store --file=.git/credentials' ) )
101
101
. then ( ( ) => fs . writeFileSync ( './ngtools-webpack-builds/.git/credentials' ,
102
102
`https://${ process . env [ 'GITHUB_ACCESS_TOKEN' ] } @github.com` ) )
103
103
. then ( ( ) => console . log ( process . env [ 'DEPLOY_SCRIPT' ] ) )
@@ -115,7 +115,7 @@ Promise.resolve()
115
115
. then ( ( message ) => execute ( 'git' , './cli-builds' , 'commit' , '-am' , message . substr ( 1 ) ) )
116
116
// Update the credentials using the GITHUB TOKEN.
117
117
. then ( ( ) => execute ( 'git' , './cli-builds' , 'config' , 'credential.helper' ,
118
- 'store' , ' --file=.git/credentials') )
118
+ 'store --file=.git/credentials' ) )
119
119
. then ( ( ) => fs . writeFileSync ( './cli-builds/.git/credentials' ,
120
120
`https://${ process . env [ 'GITHUB_ACCESS_TOKEN' ] } @github.com` ) )
121
121
. then ( ( ) => execute ( 'git' , './cli-builds' , 'push' ) )
0 commit comments