Skip to content
Snippets Groups Projects
Commit 04a41e14 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Remove tbz (tarred bzip) files from supported archive list

Not supported by default on Windows and perhaps not on all *nix systems.
You can still support creation of tbz files if you like, but you'll need to setup an external "Compressible File Type" in SCFG to do it.
parent fc7e041f
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
...@@ -722,7 +722,7 @@ str_list_t directory(const char* path) ...@@ -722,7 +722,7 @@ str_list_t directory(const char* path)
return list; return list;
} }
const char* supported_archive_formats[] = { "zip", "7z", "tgz", "tbz", NULL }; const char* supported_archive_formats[] = { "zip", "7z", "tgz", NULL };
// Returns negative on error // Returns negative on error
long create_archive(const char* archive, const char* format long create_archive(const char* archive, const char* format
,bool with_path, str_list_t file_list, char* error, size_t maxerrlen) ,bool with_path, str_list_t file_list, char* error, size_t maxerrlen)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment