fix writing to db builds with project steps with cwd and options

This commit is contained in:
oleg 2016-01-09 20:30:06 +03:00
parent 38bd46accd
commit 20639cf997
2 changed files with 5 additions and 2 deletions

View File

@ -52,6 +52,7 @@ animation" appear but should not.
* ~~more strict server and project configs valifation~~
* ui browser tests needed
* use one from: jquery or native browser methods
* cleanup project steps (remove cwd, options) inside build by migration
## Feature requests

View File

@ -110,8 +110,10 @@ Executor.prototype._getSources = function(params, callback) {
);
};
Executor.prototype._runStep = function(params, callback) {
var self = this;
Executor.prototype._runStep = function(step, callback) {
var self = this,
params = _(step).clone();
Steppy(
function() {
if (params.type !== 'shell') {