From fd1d1f60792d728dd7a970355e427c22386646d3 Mon Sep 17 00:00:00 2001 From: rexim Date: Fri, 23 Feb 2024 08:11:43 +0700 Subject: [PATCH] Don't copy resources/ folder into build/ anymore Since we are bundling everything by default, the first impression of the project after a first build is not gonna be ruined by this specifically. --- nob.c | 1 - 1 file changed, 1 deletion(-) diff --git a/nob.c b/nob.c index d0afbb7..9c88019 100644 --- a/nob.c +++ b/nob.c @@ -182,7 +182,6 @@ int main(int argc, char **argv) if (!generate_resource_bundle()) return 1; #endif // MUSIALIZER_UNBUNDLE if (!build_musializer()) return 1; - if (!nob_copy_directory_recursively("./resources/", "./build/resources/")) return 1; } else if (strcmp(subcommand, "dist") == 0) { if (!build_dist()) return 1; } else if (strcmp(subcommand, "config") == 0) {