mirror of
https://gitlab.silvrtree.co.uk/martind2000/nci.git
synced 2025-02-10 20:09:17 +00:00
fix writing to db builds with project steps with cwd and options
This commit is contained in:
parent
38bd46accd
commit
20639cf997
@ -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
|
||||
|
@ -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') {
|
||||
|
Loading…
Reference in New Issue
Block a user