Skip to content

Commit

Permalink
Merge pull request #4 from CesiumGS/fix-cloc
Browse files Browse the repository at this point in the history
Fix cloc gulp task
  • Loading branch information
lilleyse committed Nov 21, 2022
2 parents 6520e30 + bc1a58f commit 71db8f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ gulp.task('cloc', function() {
return source.then(function() {
return new Promise(function(resolve, reject) {
cmdLine = `perl ${ clocPath } --quiet --progress-rate=0` +
` specs/lib/ specs/bin/`;
` test/lib/ test/bin/`;
child_process.exec(cmdLine, function(error, stdout, stderr) {
if (error) {
console.log(stderr);
Expand Down

0 comments on commit 71db8f4

Please sign in to comment.