npmci/ts/npmci.bash.ts

49 lines
1.7 KiB
TypeScript
Raw Normal View History

2016-11-24 22:21:40 +00:00
import * as plugins from './npmci.plugins'
2016-06-07 01:57:43 +00:00
2016-11-24 22:21:40 +00:00
let nvmSourceString: string = ''
export let nvmAvailable: boolean = false
let checkNvm = () => {
2016-11-24 22:21:40 +00:00
if (plugins.shelljs.exec(`bash -c "source /usr/local/nvm/nvm.sh"`,{silent: true}).code === 0) {
nvmSourceString = `source /usr/local/nvm/nvm.sh && `
2016-11-24 22:21:40 +00:00
nvmAvailable = true
} else if (plugins.shelljs.exec(`bash -c "source ~/.nvm/nvm.sh"`,{silent: true}).code === 0) {
2016-08-02 21:11:42 +00:00
nvmSourceString = `source ~/.nvm/nvm.sh && `
2016-11-24 22:21:40 +00:00
nvmAvailable = true
2016-08-02 21:11:42 +00:00
};
2016-11-24 22:21:40 +00:00
}
checkNvm()
2016-08-02 21:11:42 +00:00
export let bash = (commandArg: string, retryArg = 2, bareArg = false) => {
2016-11-24 22:21:40 +00:00
let exitCode: number
let stdOut: string
let execResult
2016-08-02 21:11:42 +00:00
if (!process.env.NPMTS_TEST) { // NPMTS_TEST is used during testing
for (let i = 0; i <= retryArg; i++) {
if (!bareArg) {
2016-06-07 01:57:43 +00:00
execResult = plugins.shelljs.exec(
`bash -c "${nvmSourceString} ${commandArg}"`
2016-11-24 22:21:40 +00:00
)
2016-06-07 01:57:43 +00:00
} else {
2016-11-24 22:21:40 +00:00
execResult = plugins.shelljs.exec(commandArg)
2016-06-07 01:57:43 +00:00
}
2016-11-24 22:21:40 +00:00
exitCode = execResult.code
stdOut = execResult.stdout
if (exitCode !== 0 && i === retryArg) {
process.exit(1)
} else if (exitCode === 0) {
i = retryArg + 1 // if everything works out ok retrials are not wanted
2016-06-05 19:11:30 +00:00
} else {
2016-11-24 22:21:40 +00:00
plugins.beautylog.warn('Something went wrong! Exit Code: ' + exitCode.toString())
plugins.beautylog.info('Retry ' + (i + 1).toString() + ' of ' + retryArg.toString())
}
2016-06-05 12:55:08 +00:00
}
} else {
2016-11-24 22:21:40 +00:00
plugins.beautylog.log('ShellExec would be: ' + commandArg)
2016-05-30 01:43:15 +00:00
}
2016-11-24 22:21:40 +00:00
return stdOut
}
2016-08-02 21:11:42 +00:00
export let bashBare = (commandArg, retryArg = 2) => {
2016-11-24 22:21:40 +00:00
return bash(commandArg, retryArg, true)
}