We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4f2ea1 commit f52267dCopy full SHA for f52267d
update-checker.sh
@@ -44,10 +44,10 @@ for path in "${file_paths[@]}"; do
44
# If we're not running in a container, use the Flatpak. Else, assume we're
45
# running in a container and call the data checker directly.
46
if [[ ! -f /run/.containerenv && ! -f /.dockerenv ]]; then
47
- 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
48
reset_to_master
49
else
50
- /app/flatpak-external-data-checker "${args[@]}" "$path"
+ /app/flatpak-external-data-checker "${args[@]}" "$path" || true
51
52
fi
53
done
0 commit comments