mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2025-06-05 02:07:41 +02:00
* get rid of subshell + exec The new way of executing `sha512sum` should work as well as the old way but without the clutter and possible problems the usage of subshells + exec incurs. Moreover, there was a misconception about array expansion. Using `""` around an expanding array (`${ARRAY[@]}`) is quite fine (and actually the preffered way), not because it makes the expansion _one_ string (this would be `${ARRAY[*]}`), but it makes sure when elements are expanded, each element has `""` around them so to speak, i.e. there is no re-splitting of these elements. * removed old concerns in comments * increase test and check for changes sleep duration