Set git remote on init

This commit is contained in:
NGPixel 2017-04-16 12:15:09 -04:00
parent b004362aba
commit 642bcac472

View File

@ -115,15 +115,15 @@ module.exports = {
return self._git.exec('remote', 'show').then((cProc) => {
let out = cProc.stdout.toString()
if (_.includes(out, 'origin')) {
return true
} else {
return Promise.each(gitConfigs, fn => { return fn() }).then(() => {
if (!_.includes(out, 'origin')) {
return self._git.exec('remote', ['add', 'origin', self._url])
} else {
return self._git.exec('remote', ['set-url', 'origin', self._url])
}
}).catch(err => {
winston.error(err)
})
}
})
}).catch((err) => {
winston.error('[' + PROCNAME + '.Git] Git remote error!')