Skip to content

Commit

Permalink
throw error
Browse files Browse the repository at this point in the history
  • Loading branch information
heavyk committed Oct 27, 2015
1 parent 85a549a commit 4e9f25f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nodes/Source.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export default class Source extends Node {
this._entries = {}
this._dir = new Directory( this.dir );
const processDirEntries = ( err, entries ) => {
if (err) return;
if (err) throw err;

entries.forEach( entry => {
if ( this._entries[ entry.path ] ) return;
Expand Down

0 comments on commit 4e9f25f

Please sign in to comment.