mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-13 12:19:25 +00:00
Merge pull request #14271 from keymanapp/fix/core/build
fix(core): fix failing `common-test-core.sh` script
This commit is contained in:
commit
139bfb2b77
1 changed files with 2 additions and 5 deletions
|
|
@ -25,19 +25,16 @@ builder_parse "$@"
|
|||
if is_ubuntu; then
|
||||
ARCH=arch
|
||||
elif is_windows; then
|
||||
ARCH=x86
|
||||
ARCH=win
|
||||
elif is_macos; then
|
||||
ARCH=mac
|
||||
else
|
||||
builder_echo error "Unknown architecture"
|
||||
return 1
|
||||
exit 1
|
||||
fi
|
||||
|
||||
function do_all() {
|
||||
"${KEYMAN_ROOT}/core/build.sh" configure,build,test:${ARCH}
|
||||
if is_windows; then
|
||||
"${KEYMAN_ROOT}/core/build.sh" configure,build,test:x64
|
||||
fi
|
||||
}
|
||||
|
||||
builder_run_action all do_all
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue