Skip to content

Commit f52267d

Browse files
committed
Make sure x-checker does not fail
1 parent a4f2ea1 commit f52267d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

update-checker.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,10 @@ for path in "${file_paths[@]}"; do
4444
# If we're not running in a container, use the Flatpak. Else, assume we're
4545
# running in a container and call the data checker directly.
4646
if [[ ! -f /run/.containerenv && ! -f /.dockerenv ]]; then
47-
flatpak run --filesystem="$(pwd)" org.flathub.flatpak-external-data-checker "${args[@]}" "$path"
47+
flatpak run --filesystem="$(pwd)" org.flathub.flatpak-external-data-checker "${args[@]}" "$path" || true
4848
reset_to_master
4949
else
50-
/app/flatpak-external-data-checker "${args[@]}" "$path"
50+
/app/flatpak-external-data-checker "${args[@]}" "$path" || true
5151
reset_to_master
5252
fi
5353
done

0 commit comments

Comments
 (0)