File: remove-flatpak-dist.sh

package info (click to toggle)
totem 43.2-9
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 14,496 kB
  • sloc: ansic: 30,058; python: 964; makefile: 228; xml: 221; sh: 157
file content (9 lines) | stat: -rwxr-xr-x 168 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
#!/bin/sh

if test x"$MESON_DIST_ROOT" != "x" && test -d $MESON_DIST_ROOT; then
  rm -rf $MESON_DIST_ROOT/flatpak
  exit $?
fi

echo MESON_DIST_ROOT must be set
exit 1