added CI tests

This commit is contained in:
2016-07-04 00:00:04 +02:00
parent db27753aac
commit e0daf85e34
10 changed files with 115 additions and 27 deletions

View File

@@ -9,7 +9,7 @@ export let commit = (dirPathArg:string,commitMessage:string) => {
return done.promise;
};
// if everything is all right proceed
plugins.shelljs.exec(`git commit -m "${commitMessage}"`);
plugins.shelljs.exec(`(cd ${dirPathArg} && git commit -m "${commitMessage}")`);
done.resolve();
return done.promise;
};