We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
-v
1 parent 57967ca commit 184b3c4Copy full SHA for 184b3c4
build.sh
@@ -64,13 +64,13 @@ echo '::endgroup::'
64
echo '::group::Copying files into /tmp/local-repo'
65
{
66
echo "Copying $pkgbuild"
67
- cp "$pkgbuild" /tmp/local-repo/PKGBUILD
+ cp -v "$pkgbuild" /tmp/local-repo/PKGBUILD
68
}
69
# shellcheck disable=SC2086
70
# Ignore quote rule because we need to expand glob patterns to copy $assets
71
if [[ -n "$assets" ]]; then
72
echo 'Copying' $assets
73
- cp -rt /tmp/local-repo/ $assets
+ cp -rtv /tmp/local-repo/ $assets
74
fi
75
echo '::endgroup::'
76
0 commit comments