now using bash for everything

This commit is contained in:
2016-05-30 03:40:07 +02:00
parent 5632bd5d0b
commit 77ce4eea00
10 changed files with 47 additions and 20 deletions

9
ts/npmci.bash.ts Normal file
View File

@@ -0,0 +1,9 @@
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 +
"\""
);
}