Skip to content
This repository has been archived by the owner on Mar 26, 2018. It is now read-only.

Commit

Permalink
fix(gen): use absolute paths in generated .gitignore
Browse files Browse the repository at this point in the history
The generated .gitignore contains relative paths that will match
in both the root of the project or somewhere down the tree.

This can be problematic if the project gets a folder called `dist`
or some other ignored name.

This patch makes the default .gitignores absolute.
  • Loading branch information
huerlisi committed May 12, 2015
1 parent c9c3aa6 commit 1f907d3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions templates/common/root/gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
node_modules
dist
.tmp
.sass-cache
bower_components
/node_modules
/dist
/.tmp
/.sass-cache
/bower_components

0 comments on commit 1f907d3

Please sign in to comment.