Sfoglia il codice sorgente

Merge pull request #65 from ShaqeelAhmad/tar-gzip

Add z option to tar to apply gzip compression
Alexey Kutepov 2 anni fa
parent
commit
cc7bee55fa
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      src/nob_linux.c

+ 1 - 1
src/nob_linux.c

@@ -155,7 +155,7 @@ bool build_dist()
     // TODO: should we pack ffmpeg with Linux build?
     // There are some static executables for Linux
     Nob_Cmd cmd = {0};
-    nob_cmd_append(&cmd, "tar", "fvc", "./musializer-linux-x86_64.tar.gz", "./musializer-linux-x86_64");
+    nob_cmd_append(&cmd, "tar", "fvcz", "./musializer-linux-x86_64.tar.gz", "./musializer-linux-x86_64");
     bool ok = nob_cmd_run_sync(cmd);
     nob_cmd_free(cmd);
     if (!ok) return false;