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.
Archive: Hidden files in Linux
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.
BTW I locally fixed this replacing the following line (5584) of script.cpp:
GLOB(lgss, GLOB_NOSORT, NULL, &globbuf);
GLOB(lgss, GLOB_NOSORT | GLOB_PERIOD, NULL, &globbuf);
Please submit a patch at the project page.