41 lines
1.6 KiB
TypeScript
41 lines
1.6 KiB
TypeScript
import "typings-global";
|
|
import * as plugins from "./npmci.plugins";
|
|
export let bash = (commandArg:string,retryArg = 2) => {
|
|
if(!process.env.NPMTS_TEST){
|
|
for (let i = 0; i <= retryArg; i++){
|
|
let exitCode:number = plugins.shelljs.exec(
|
|
"bash -c \"source /usr/local/nvm/nvm.sh &&" +
|
|
commandArg +
|
|
"\""
|
|
).code;
|
|
if(exitCode !== 0 && i == retryArg){
|
|
process.exit(1);
|
|
} else if(exitCode == 0){
|
|
i = retryArg + 1; // if everything works out ok retrials are not wanted
|
|
} else {
|
|
plugins.beautylog.warn("Something went wrong! Exit Code: " + exitCode.toString);
|
|
plugins.beautylog.info("Retry " + (i + 1).toString() + " of " + retryArg.toString());
|
|
}
|
|
}
|
|
} else {
|
|
plugins.beautylog.log("ShellExec would be: " + commandArg.blue)
|
|
}
|
|
}
|
|
|
|
export let bashBare = (commandArg,retryArg = 2) => {
|
|
if (!process.env.NPMTS_TEST){
|
|
for(let i = 0; i <= retryArg; i++){
|
|
let exitCode:number = plugins.shelljs.exec(commandArg).code;
|
|
if(exitCode !== 0 && i == retryArg){
|
|
process.exit(1);
|
|
} else if(exitCode == 0){
|
|
i = retryArg + 1; // if everything works out ok retrials are not wanted
|
|
} else {
|
|
plugins.beautylog.warn("Something went wrong! Exit Code: " + exitCode.toString);
|
|
plugins.beautylog.info("Retry " + (i + 1).toString() + " of " + retryArg.toString());
|
|
}
|
|
}
|
|
} else {
|
|
plugins.beautylog.log("ShellExec would be: " + commandArg.blue)
|
|
}
|
|
} |