commit 81135670fc76779b87dcb39825501abb68f4a547 from: Tracey Emery via: Thomas Adam date: Tue Jan 25 23:25:40 2022 UTC unbreak gotweb index when pack files are missing commit - ce0bbcfd76f150d6b4253f7ac8817db59aad88ac commit + 81135670fc76779b87dcb39825501abb68f4a547 blob - 7b57c645b008fa8fd0bb6c9d82f1befc4aa97cf6 blob + 4410f6b68a29f6d49258d0daf30f0d8fbbd5774b --- gotweb/gotweb.c +++ gotweb/gotweb.c @@ -2001,7 +2001,7 @@ gw_load_got_paths(struct gw_trans *gw_trans) error = NULL; continue; } - else if (error) + else if (error && error->code != GOT_ERR_LONELY_PACKIDX) goto done; if (lstat(gw_dir->path, &st) == 0 && S_ISDIR(st.st_mode) &&