mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-08 18:05:32 +00:00
11 lines
166 B
Bash
Executable file
11 lines
166 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# Update the dconf schema
|
|
dconf update
|
|
|
|
echo "postinst called to compile glib schemas"
|
|
glib-compile-schemas /usr/share/glib-2.0/schemas/
|
|
|
|
exit 0
|