1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-02-04 07:51:50 +00:00

Fixed typo in decompress example documentation (#11150)

This commit is contained in:
Thomas Löhr 2025-11-13 18:35:12 +00:00 committed by GitHub
parent 183aa6ed6b
commit 32f0ad2f97
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -68,7 +68,7 @@ EXAMPLES = r"""
- name: Decompress file compressed with bzip2
community.general.decompress:
src: /path/to/file.txt.bz2
dest: /path/to/file.bz2
dest: /path/to/file.txt
format: bz2
- name: Decompress file and delete the compressed file afterwards