Skip to content

Commit 4a6dad6

Browse files
committed
set -eou pipefail
1 parent 96b5f47 commit 4a6dad6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

package/greposcope

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ set -eou pipefail
1111
progname="greposcope"
1212
tmp_dir="${TMPDIR:-/tmp}/${progname}-${UID}"
1313
rebuilderd_host="https://reproducible.archlinux.org"
14+
extra_grep_opt=""
15+
pattern=""
1416

1517
help() {
1618
cat <<EOF
@@ -82,7 +84,7 @@ if [ ${#pkg_list[@]} -eq 0 ]; then
8284
else
8385
echo -e "==> Downloading diffoscope outputs of ${#pkg_list[@]} unreproducible packages...\nThis may take some time...\n"
8486
parallel --bar -j "$(nproc)" \
85-
rebuildctl -H "${rebuilderd_host}" pkgs diffoscope --name {} "&>" "${tmp_dir}/{}.diffoscope" ::: "${pkg_list[@]}"
87+
rebuildctl -H "${rebuilderd_host}" pkgs diffoscope --name {} "&>" "${tmp_dir}/{}.diffoscope" ::: "${pkg_list[@]}" || true
8688
fi
8789

8890
echo -e "\n==> Searching for \"${pattern}\" in diffoscope outputs...\n"

0 commit comments

Comments
 (0)