We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da4bd2a commit b4f8865Copy full SHA for b4f8865
1 file changed
repro.in
@@ -381,7 +381,10 @@ function cmd_check(){
381
bash <<-__END__
382
shopt -s globstar
383
pacman -S asp --noconfirm --needed
384
-asp checkout $pkgbase
+if ! asp checkout $pkgbase; then
385
+ echo "ERROR: Failed checkout $pkgbase" >&2
386
+ exit 1
387
+fi
388
pushd $pkgbase
389
for rev in \$(git rev-list --all -- repos/); do
390
pkgbuild_checksum=\$(git show \$rev:trunk/PKGBUILD | sha256sum -b)
0 commit comments