Skip to content

Commit

Permalink
Fix permission denied error. (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
awalsh128 authored Sep 1, 2022
1 parent fc1d3ef commit 09f9c08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install_and_cache_pkgs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ for installed_package in ${installed_packages}; do
while IFS= read -r f; do
if test -f $f || test -L $f; then echo "${f:1}"; fi; #${f:1} removes the leading slash that Tar disallows
done |
xargs tar -czf "${cache_filepath}" -C /
sudo xargs tar -czf "${cache_filepath}" -C /
log " done (compressed size $(du -h "${cache_filepath}" | cut -f1))."
fi

Expand Down

0 comments on commit 09f9c08

Please sign in to comment.