Skip to content
This repository has been archived by the owner on Nov 21, 2017. It is now read-only.

Commit

Permalink
docs(README): fix paths in the sample code
Browse files Browse the repository at this point in the history
Fix `gulp.dest` paths that cause gulp trying to create directory CHANGELOG.md.

Closes #1
  • Loading branch information
JacopKane authored and stevemao committed Jul 10, 2015
1 parent 031acf3 commit 7a80912
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions readme.md
Expand Up @@ -27,7 +27,7 @@ gulp.task('default', function () {
.pipe(conventionalChangelog({
preset: 'angular'
}))
.pipe(gulp.dest('CHANGELOG.md'));
.pipe(gulp.dest('./'));
});
```

Expand All @@ -42,7 +42,7 @@ gulp.task('default', function () {
.pipe(conventionalChangelog({
preset: 'angular'
}))
.pipe(gulp.dest('CHANGELOG.md'));
.pipe(gulp.dest('./'));
});
```

Expand Down

0 comments on commit 7a80912

Please sign in to comment.