mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-03 09:13:12 +00:00
* Fix: create retry_files_save_path if it doesn't exist Ansible documentation states that retry_files_save_path directory will be created if it does not already exist. It currently doesn't, so this patch fixes it :) * Use makedirs_safe to ensure thread-safe dir creation @bcoca suggested to use the makedirs_safe helper function :)