mirror of
https://github.com/clearlinux/mixer-tools.git
synced 2026-09-05 13:11:31 +00:00
Previously the code was using ioutils.ReadDir which does a stat call on every file, but none of the code required the results of the stat calls, just the names. In addition programs such as git would like to hold information in the directories. The usual unix way to do this is to have filenames beginning with '.', and these are ignored by default by things such as shell globbing and the ls program. fixes #269 Signed-off-by: Icarus Sparry <icarus.w.sparry@intel.com>