Browse Source

Fised git add remote

production
pb 3 years ago
parent
commit
274c3c89eb
1 changed files with 34 additions and 20 deletions
  1. 34
    20
      index.js

+ 34
- 20
index.js View File

} }


var perform_git_seturl = (dir) => { var perform_git_seturl = (dir) => {
op['is-git-repo'](dir).then((code) => {
op['is-git-repo'](dir).then((logEntry) => {
any(serial_perform_git_seturl(dir.name).map(x)) any(serial_perform_git_seturl(dir.name).map(x))
}).catch((e) => { }).catch((e) => {
// console.log('Failed : ' + dir.name) // console.log('Failed : ' + dir.name)
// return Promise.resolve(true) // return Promise.resolve(true)
} }
var perform_git_add = (dir) => { var perform_git_add = (dir) => {
op['is-git-repo'](dir).then((code) => {
op['is-git-repo'](dir).then((logEntry) => {
// console.log(code) // console.log(code)
if (code) {
if (logEntry.success) {
nodeShellExec('git', ['remote', 'get-url', remotename], { cwd: dir.name, stdio: 'ignore' }).then(() => { nodeShellExec('git', ['remote', 'get-url', remotename], { cwd: dir.name, stdio: 'ignore' }).then(() => {
console.log('skipped : ' + dir.name + ', reason : A remote with same name already exists.') console.log('skipped : ' + dir.name + ', reason : A remote with same name already exists.')
}) })
// return Promise.resolve(true) // return Promise.resolve(true)
} }
var perform_git_remove = (dir) => { var perform_git_remove = (dir) => {
op['is-git-repo'](dir).then((code) => {
op['is-git-repo'](dir).then((logEntry) => {
// console.log(code) // console.log(code)
if (code) {
if (logEntry.success) {
nodeShellExec('git', ['remote', 'get-url', remotename], { cwd: dir.name, stdio: 'ignore' }).then(() => { nodeShellExec('git', ['remote', 'get-url', remotename], { cwd: dir.name, stdio: 'ignore' }).then(() => {
any(serial_perform_git_remove(dir.name).map(x)) any(serial_perform_git_remove(dir.name).map(x))
}) })
// return Promise.resolve(true) // return Promise.resolve(true)
} }
var perform_init_gitea = (dir) => { var perform_init_gitea = (dir) => {
op['is-git-repo'](dir).then((code) => {
op['is-git-repo'](dir).then((logEntry) => {
// console.log(code) // console.log(code)
if (code) {
if (logEntry.success) {
nodeShellExec('git', ['remote', 'get-url', 'chess'], { cwd: dir.name, stdio: 'ignore' }).then(() => { nodeShellExec('git', ['remote', 'get-url', 'chess'], { cwd: dir.name, stdio: 'ignore' }).then(() => {
console.log('skipped : ' + dir.name + ', reason : Already has remote chess ') console.log('skipped : ' + dir.name + ', reason : Already has remote chess ')
}) })
return chessinstances return chessinstances
} }



var noprerequisites = {
add : true
}
var skipprereqs = {}
var maintask = () => { var maintask = () => {
// Default cmd to run ! // Default cmd to run !
processedArgs._[0] === processedArgs._[0] || 'pull'; processedArgs._[0] === processedArgs._[0] || 'pull';
// selectedinstance.reposerver = repomanifest.reposervers[0] // PB : TODO -- Attempt first one that is available and online from all that are available... // selectedinstance.reposerver = repomanifest.reposervers[0] // PB : TODO -- Attempt first one that is available and online from all that are available...
return prerequisites.git.verifyAndInstall().then(()=>{
var e = { message : 'verifyAndInstall', success : true}
return acquireConfig(selectedinstance, chessinstances).catch((err) => {
e = err;
console.error('Chosen cofiguraton failed or not found. Fix config and rerun or chose another.')
console.error(err)
}).then(() => { return elxrworker(true) })
// .finally(()=>{
// fs.writeFileSync('run.log', ', ' + JSON.stringify({ error: e.message }), { 'flag': 'a+' })
// if(!e.success) fs.writeFileSync('run.done', 'error');
// // return process.exit()
// })
})
if(!noprerequisites[processedArgs._[0]]
&& !skipprereqs[processedArgs._[0]]
) {
return prerequisites.git.verifyAndInstall().then(()=>{
var e = { message : 'verifyAndInstall', success : true}
return acquireConfig(selectedinstance, chessinstances).catch((err) => {
e = err;
console.error('Chosen cofiguraton failed or not found. Fix config and rerun or chose another.')
console.error(err)
}).then(() => { return elxrworker(true) })
// .finally(()=>{
// fs.writeFileSync('run.log', ', ' + JSON.stringify({ error: e.message }), { 'flag': 'a+' })
// if(!e.success) fs.writeFileSync('run.done', 'error');
// // return process.exit()
// })
})
}
else {
console.log('cmd has no preqs or has been configured to skip preqs')
return elxrworker()
}

} }


const retaincount = 2 const retaincount = 2

Loading…
Cancel
Save