From: Lady Date: Sun, 15 Sep 2024 17:31:34 +0000 (-0400) Subject: Allow empty archives X-Git-Tag: 0.12.5~2 X-Git-Url: https://git.ladys.computer/Shushe/commitdiff_plain/c00f24956715156ae739772cefd04849c3db721b?hp=c00f24956715156ae739772cefd04849c3db721b Allow empty archives Previously, when an archive was empty, it would cause Make to endlessly restart. This was especially a problem for archives generated from includes, as if the include was missing (or an empty folder), the archive would have no members and Make would get stuck in a retry loop. This commit provides the necessary adjustments to ensure archive code continues working even when the archive is empty: The archive index file is always written, and the archive files folder is made to exist before attempting to `cd` into it. ---