11 lines
200 B
Bash
Executable File
11 lines
200 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
if [ "$1" = "configure" ]; then
|
|
if command -v glib-compile-schemas >/dev/null 2>&1; then
|
|
glib-compile-schemas /usr/share/glib-2.0/schemas/ || true
|
|
fi
|
|
fi
|
|
|
|
#DEBHELPER#
|