Skip to content
This repository has been archived by the owner on Jan 15, 2019. It is now read-only.

Commit

Permalink
Merge pull request #2 from cgatno/release/v0.1.9
Browse files Browse the repository at this point in the history
Release/v0.1.9
  • Loading branch information
Christian Gaetano committed May 4, 2017
2 parents b56cfc4 + 2bbbd2d commit e877bd8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "impostr",
"version": "0.1.8",
"version": "0.1.9",
"description": "Impostr helps you keep track of who's who and what's what. Simple caching tool for checking for file changes over time.",
"main": "build/impostr.js",
"repository": "https://github.com/cgatno/impostr",
Expand Down
2 changes: 1 addition & 1 deletion src/lib/TrackingCache.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export default class TrackingCache {
*/
trackFiles(globPattern, done) {
if (this.debug) console.log(`Tracking files matching pattern ${globPattern}...`);
glob(globPattern, { nodir: true }, (err, files) => {
glob(globPattern, { nodir: true, symlinks: true }, (err, files) => {
if (err) {
if (this.debug) console.log('IMPOSTR ERROR: ', JSON.stringify(err));
throw err;
Expand Down

0 comments on commit e877bd8

Please sign in to comment.