Stop warnings being reported during CI builds

-Also updated link to logo2 and copyright date in root readme
This commit is contained in:
darcywong00 2018-02-01 10:35:48 +07:00
parent 49b5bcaedd
commit 686bb50bc0
7 changed files with 32 additions and 2 deletions

View file

@ -1,4 +1,4 @@
![Keyman](https://s.keyman.com/kmc/deploy/img/logo2.ba10b4af03869e69115ce84380e980aa.png)
![Keyman](https://keyman.com/cdn/dev/img/logo2.png)
Open Source
@ -35,6 +35,6 @@ Each platform maintains multiple types of releases:
# License
Copyright (c) SIL International. All rights reserved.
Copyright (c) 2018 SIL International. All rights reserved.
Licensed under the [MIT](./windows/src/LICENSE.md) License.

View file

@ -11,6 +11,11 @@ display_usage ( ) {
echo Build KMAPro
#
# Prevents 'clear' on exit of mingw64 bash shell
#
SHLVL=0
NO_DAEMON=false
# Parse args

View file

@ -18,6 +18,11 @@ display_usage ( ) {
echo Build KMEA
#
# Prevents 'clear' on exit of mingw64 bash shell
#
SHLVL=0
# Path definitions
KM_ROOT="$(cd "$( dirname "${BASH_SOURCE[0]}" )/../.." && pwd )"
KMA_ROOT="$KM_ROOT/android"

View file

@ -1,5 +1,10 @@
#!/bin/sh
# Build KMSample1
#
# Prevents 'clear' on exit of mingw64 bash shell
#
SHLVL=0
echo Build KMSample1
./gradlew clean build

View file

@ -1,5 +1,10 @@
#!/bin/sh
# Build KMSample2
#
# Prevents 'clear' on exit of mingw64 bash shell
#
SHLVL=0
echo Build KMSample2
./gradlew clean build

View file

@ -1,6 +1,11 @@
#!/bin/sh
# Build KeyboardHarness test app
#
# Prevents 'clear' on exit of mingw64 bash shell
#
SHLVL=0
echo Build KMEA
cd ../../KMEA
./build.sh

View file

@ -8,6 +8,11 @@ die () {
exit 1
}
#
# Prevents 'clear' on exit of mingw64 bash shell
#
SHLVL=0
echo Build KMEA and KMAPro:
cd KMEA
./build.sh $@