Skip to content

Commit

Permalink
fix : Path on output
Browse files Browse the repository at this point in the history
  • Loading branch information
rafinskipg committed Nov 23, 2014
1 parent e5359ca commit c138e62
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ module.exports = function(grunt) {
tag1: {
options: {
app_name : 'Since tag 1 changelog',
file: 'outputs/tag1.md',
file: 'output/tag1.md',
tag: 'v0.0.1',
debug: true
}
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion test/changelog.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ describe('changelog.js', function() {
});

it('should create tag1.md', function(){
var exists_file = fs.existsSync('outputs/tag1.md');
var exists_file = fs.existsSync('output/tag1.md');
expect(exists_file).to.equal(true);
});

Expand Down

0 comments on commit c138e62

Please sign in to comment.