Skip to content

Commit

Permalink
Make sure x-checker does not fail
Browse files Browse the repository at this point in the history
  • Loading branch information
bbhtt committed Nov 27, 2024
1 parent a4f2ea1 commit f52267d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions update-checker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ for path in "${file_paths[@]}"; do
# If we're not running in a container, use the Flatpak. Else, assume we're
# running in a container and call the data checker directly.
if [[ ! -f /run/.containerenv && ! -f /.dockerenv ]]; then
flatpak run --filesystem="$(pwd)" org.flathub.flatpak-external-data-checker "${args[@]}" "$path"
flatpak run --filesystem="$(pwd)" org.flathub.flatpak-external-data-checker "${args[@]}" "$path" || true
reset_to_master
else
/app/flatpak-external-data-checker "${args[@]}" "$path"
/app/flatpak-external-data-checker "${args[@]}" "$path" || true
reset_to_master
fi
done
Expand Down

0 comments on commit f52267d

Please sign in to comment.