mirror of
https://github.com/awalsh128/cache-apt-pkgs-action.git
synced 2024-11-09 19:58:46 +00:00
Enclose filenames in single quotes to capture literals #99
This commit is contained in:
parent
270eae5fc9
commit
a644619d1f
|
@ -93,7 +93,7 @@ for installed_package in ${installed_packages}; do
|
|||
& get_install_filepath "" "${package_name}" "preinst" \
|
||||
& get_install_filepath "" "${package_name}" "postinst"; } |
|
||||
while IFS= read -r f; do test -f "${f}" -o -L "${f}" && get_tar_relpath "${f}"; done |
|
||||
xargs -I {} echo \"{}\" |
|
||||
xargs -I {} echo \'{}\' | # Single quotes ensure literals like backslash get captured.
|
||||
sudo xargs tar -cf "${cache_filepath}" -C /
|
||||
|
||||
log " done (compressed size $(du -h "${cache_filepath}" | cut -f1))."
|
||||
|
|
Loading…
Reference in a new issue