Skip to content
Snippets Groups Projects
Commit da860962 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 c8fe33de
No related branches found
No related tags found
No related merge requests found
......@@ -722,7 +722,7 @@ str_list_t directory(const char* path)
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
long create_archive(const char* archive, const char* format
,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