Skip to content

Commit

Permalink
feat: add -v flag to see files being copied
Browse files Browse the repository at this point in the history
  • Loading branch information
KSXGitHub committed Feb 10, 2025
1 parent 57967ca commit 184b3c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,13 @@ echo '::endgroup::'
echo '::group::Copying files into /tmp/local-repo'
{
echo "Copying $pkgbuild"
cp "$pkgbuild" /tmp/local-repo/PKGBUILD
cp -v "$pkgbuild" /tmp/local-repo/PKGBUILD
}
# shellcheck disable=SC2086
# Ignore quote rule because we need to expand glob patterns to copy $assets
if [[ -n "$assets" ]]; then
echo 'Copying' $assets
cp -rt /tmp/local-repo/ $assets
cp -rtv /tmp/local-repo/ $assets
fi
echo '::endgroup::'

Expand Down

0 comments on commit 184b3c4

Please sign in to comment.