Skip to content

Commit

Permalink
Fix Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
tatsy committed Jan 25, 2015
1 parent 25bf3a5 commit 7d55282
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ test-cov: clean
$(istanbul) cover $(mocha) -- -R spec test/*

coveralls:
cat ./coverage/lcov.info | ./node_modules/coveralls/bin/converalls.js;
cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js;

clean:
rm -rf coverage
1 change: 0 additions & 1 deletion lib/date-formatter.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ function fillZero(str, digits) {

exports.format = function(milliTime) {
var date = new Date(milliTime);
console.log(date.getYear());
var year = fillZero(1900 + date.getYear(), 4);
var month = fillZero(1 + date.getMonth(), 2);
var day = fillZero(date.getDate(), 2);
Expand Down

0 comments on commit 7d55282

Please sign in to comment.