We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7e7ece5 + 5615439 commit 63de69cCopy full SHA for 63de69c
modules/generate-verify/util/verify.sh
@@ -53,7 +53,7 @@ trap "cleanup" EXIT SIGINT
53
# 2. rsync on macOS 15.4 and newer is actually openrsync, which has different permissions and throws errors when copying git objects
54
#
55
# So, we use find to list all files except _bin, and then copy each in turn
56
-find . -maxdepth 1 -not \( -path "./_bin" -prune \) | xargs -I% cp -af "${projectdir}/%" "${tmp}/"
+find . -maxdepth 1 -not \( -path "./_bin" \) -not \( -path "." \) | xargs -I% cp -af "${projectdir}/%" "${tmp}/"
57
58
pushd "${tmp}" >/dev/null
59
0 commit comments