Skip to content
⌘ NSIS Forum Archive

Hidden files in Linux

3 posts

w31rd0#edited

Hidden files in Linux

Just discovered that makensis skips hidden files (which names start with period, like '.objects') while processing the 'File' instruction on Linux.
w31rd0#
BTW I locally fixed this replacing the following line (5584) of script.cpp:

GLOB(lgss, GLOB_NOSORT, NULL, &globbuf);
with

GLOB(lgss, GLOB_NOSORT | GLOB_PERIOD, NULL, &globbuf);
Not sure this fix won't break anything else though...