Skip to content

Commit 184b3c4

Browse files
committed
feat: add -v flag to see files being copied
1 parent 57967ca commit 184b3c4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,13 +64,13 @@ echo '::endgroup::'
6464
echo '::group::Copying files into /tmp/local-repo'
6565
{
6666
echo "Copying $pkgbuild"
67-
cp "$pkgbuild" /tmp/local-repo/PKGBUILD
67+
cp -v "$pkgbuild" /tmp/local-repo/PKGBUILD
6868
}
6969
# shellcheck disable=SC2086
7070
# Ignore quote rule because we need to expand glob patterns to copy $assets
7171
if [[ -n "$assets" ]]; then
7272
echo 'Copying' $assets
73-
cp -rt /tmp/local-repo/ $assets
73+
cp -rtv /tmp/local-repo/ $assets
7474
fi
7575
echo '::endgroup::'
7676

0 commit comments

Comments
 (0)