summaryrefslogtreecommitdiff
path: root/debian/celestia-data.postinst
blob: a1833763af11e45813d84adbbb5fe4740f2baf14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh

set -e

case "$1" in
  configure)
    for d in extras extras-standard; do
      if [ -d "/usr/share/celestia/$d" ]; then
        find "/usr/share/celestia/$d" -name \*.xyzv | xargs -I{} xyzv2bin "{}" "{}bin"
      fi
    done
  ;;
esac

#DEBHELPER#

exit 0