allow missing directories
1 files changed, 1 insertions(+), 1 deletions(-) M build.c
M build.c => build.c +1 -1
@@ 426,7 426,7 @@ void add_files(Graph *g, const char *root, NodeType type) { DIR *d = opendir(root); if (!d) - err(1, "opendir('%s')", root); + return; struct dirent *de; while ((de = readdir(d))) { char path[PATH_MAX];