mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 00:15:32 +00:00
Stop warnings being reported during CI builds
-Also updated link to logo2 and copyright date in root readme
This commit is contained in:
parent
49b5bcaedd
commit
686bb50bc0
7 changed files with 32 additions and 2 deletions
|
|
@ -1,4 +1,4 @@
|
|||

|
||||

|
||||
|
||||
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.
|
||||
|
|
@ -11,6 +11,11 @@ display_usage ( ) {
|
|||
|
||||
echo Build KMAPro
|
||||
|
||||
#
|
||||
# Prevents 'clear' on exit of mingw64 bash shell
|
||||
#
|
||||
SHLVL=0
|
||||
|
||||
NO_DAEMON=false
|
||||
|
||||
# Parse args
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -1,5 +1,10 @@
|
|||
#!/bin/sh
|
||||
# Build KMSample1
|
||||
|
||||
#
|
||||
# Prevents 'clear' on exit of mingw64 bash shell
|
||||
#
|
||||
SHLVL=0
|
||||
|
||||
echo Build KMSample1
|
||||
./gradlew clean build
|
||||
|
|
|
|||
|
|
@ -1,5 +1,10 @@
|
|||
#!/bin/sh
|
||||
# Build KMSample2
|
||||
|
||||
#
|
||||
# Prevents 'clear' on exit of mingw64 bash shell
|
||||
#
|
||||
SHLVL=0
|
||||
|
||||
echo Build KMSample2
|
||||
./gradlew clean build
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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 $@
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue