Skip to content

Commit

Permalink
Adding some logs
Browse files Browse the repository at this point in the history
  • Loading branch information
yal authored and yal committed Oct 18, 2016
1 parent 66f61d0 commit 4e0c56d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions gulpfile-ci.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ gulp.task("CI-Enumerate-Users", function () {

return gulp.src("./src/**/serialization/*.Users/**/*.yml")
.pipe(foreach(function (stream, file) {
console.log(file);
var fileContent = file.contents.toString();
var userName = unicorn.getUserPath(file);
users.push(userName);
Expand All @@ -102,6 +103,7 @@ gulp.task("CI-Enumerate-Roles", function () {

return gulp.src("./src/**/serialization/*.Roles/**/*.yml")
.pipe(foreach(function (stream, file) {
console.log(file);
var fileContent = file.contents.toString();
var roleName = unicorn.getRolePath(file);
roles.push(roleName);
Expand Down

0 comments on commit 4e0c56d

Please sign in to comment.