Skip to content

Commit

Permalink
cp -a implies -r, so remove it
Browse files Browse the repository at this point in the history
  • Loading branch information
andsens committed Nov 1, 2023
1 parent 7c0312c commit 834df8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion upkg.sh
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ and does not point to the package" "$command" "$pkgname" "$pkgversion"
fi
while [[ -n $assets ]] && read -r -d $'\n' asset; do
mkdir -p "$(dirname "$pkgpath/$asset")"
cp -ar "$tmppkgpath/$asset" "$pkgpath/$asset"
cp -a "$tmppkgpath/$asset" "$pkgpath/$asset"
done <<<"$assets"
if [[ -n $commands ]]; then
mkdir -p "$binpath"
Expand Down

0 comments on commit 834df8f

Please sign in to comment.