aboutsummaryrefslogtreecommitdiffstats
path: root/dist-tools/htmldoc
blob: b16af17f69bb6800f1153eb98ec1b36e6119c4b3 (plain)
1
2
3
4
5
6
7
#!/bin/sh
set -eu
type htmldoc >/dev/null 2>&1 && case "$(type htmldoc)" in
*"$(realpath $(dirname $0))"*) ;; # ignore re-executing ourselves to avoid unterminated recursion
*) exec htmldoc "$@" ;;
esac
exec flatpak run --filesystem=host org.msweet.htmldoc "$@"