mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-06 08:55:34 +00:00
13 lines
236 B
Bash
Executable file
13 lines
236 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
# set -x
|
|
# set -u <-- difficult to test if variable is set this way...
|
|
|
|
./kmbuild.sh $*
|
|
|
|
if [ ! -z "$RELEASE_OEM" ]; then
|
|
pushd ../oem/firstvoices/ios > /dev/null
|
|
./build.sh -lib-nobuild $*
|
|
popd > /dev/null
|
|
fi
|