Subj : DD Upload Processor: More robust filename extension matching based on To : GitLab note in main/sbbs From : Rob Swindell Date : Thu Feb 05 2026 03:14 pm https://gitlab.synchro.net/main/sbbs/-/merge_requests/606#note_8215 Just wanted to make sure you're aware, tar support is built-into synchro.net since v3.19 I think. Also, you don't need to change the cwd (cd command), that's usually a red flag/code smell: - tar (for Linux at least) has the `-C` option ``` -C, --directory=DIR Change to DIR before performing any operations. This option is order-sensitive, i.e. it affects all options that follow. ``` Also this option looks possibly relevant to your needs: ``` --one-top-level[=DIR] Extract all files into DIR, or, if used without argument, into a subdirectory named by the base name of th e archive (minus standard compression suffixes recognizable by --auto-compress). ``` .