7 lines
161 B
Bash
Executable File
7 lines
161 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# if this directory is not present it fails the build
|
|
if [ ! -d "/usr/share/glib-2.0/gettext" ]; then
|
|
mkdir -p "/usr/share/glib-2.0/gettext"
|
|
fi
|