fulldecent / swift5-module-template

An opinionated starting point for awesome, reusable Swift 5 modules
MIT License
450 stars 56 forks source link

add FNM_DOTMATCH to Dir.glob call, fix issue #19 #25

Closed lanza closed 7 years ago

lanza commented 7 years ago

Just changes

Dir.glob("**/*")

to

Dir.glob("**/*",File::FNM_DOTMATCH)

which causes the script to iterate over all hidden files and thus fixes the .travis problem.

lanza commented 7 years ago

Nevermind, this was fixed since I last pulled from master! Sorry!