Skip to content

Commit

Permalink
fix bug in scanImages fixes #149
Browse files Browse the repository at this point in the history
  • Loading branch information
drapanjanas committed Oct 12, 2017
1 parent 4e0d23f commit 4518fd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion re-natal.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ scanImageDir = (dir, platforms) ->
dirs = fs.readdirSync(dir)
.map (fname) -> "#{dir}/#{fname}"
.filter (path) -> fs.statSync(path).isDirectory()
fnames.concat scanImages(dirs)
fnames.concat scanImages(dirs, platforms)

removeExcludeFiles = (file) ->
excludedFileNames = [".DS_Store"]
Expand Down

0 comments on commit 4518fd7

Please sign in to comment.