modifications to the jenkins script to work better with bash, fixed the commit number of the nock dep

This commit is contained in:
Spencer Alger
2013-12-12 15:59:10 -07:00
parent 345ac776ef
commit c5440792d3
6 changed files with 16295 additions and 15 deletions

View File

@ -219,7 +219,9 @@ YamlDoc.prototype = {
log('getting', path, 'from', from);
var steps = path ? path.split('.') : [];
var steps = _.map(path ? path.replace(/\\\./g, '\uffff').split('.') : [], function (step) {
return step.replace(/\uffff/g, '.');
});
var remainingSteps;
for (i = 0; from != null && i < steps.length; i++) {