mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
17 lines
198 B
Bash
17 lines
198 B
Bash
#!/bin/sh
|
|
|
|
for i in "$@"; do
|
|
if ! [ -e "$i" ]; then
|
|
continue
|
|
fi
|
|
case "$i" in
|
|
*/modules)
|
|
/usr/bin/gio-querymodules "$i"
|
|
;;
|
|
*/schemas)
|
|
/usr/bin/glib-compile-schemas "$i"
|
|
;;
|
|
esac
|
|
done
|
|
|