npmci/ts/npmci.bash.ts

9 lines
227 B
TypeScript
Raw Normal View History

2016-05-30 01:40:07 +00:00
import "typings-global";
import * as plugins from "./npmci.plugins";
export let bash = (commandArg) => {
plugins.shelljs.exec(
"bash -c \"source /usr/local/nvm/nvm.sh &&" +
commandArg +
"\""
);
}