mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 00:15:32 +00:00
maint(resources): fix build call in npm-publish
This commit is contained in:
parent
fe7209cdeb
commit
17cc7fd321
1 changed files with 2 additions and 2 deletions
|
|
@ -40,7 +40,7 @@ function do_pack() {
|
|||
local npm_package_path
|
||||
for npm_package_path in "${PACKAGES[@]}"; do
|
||||
builder_heading "Building and packing ${npm_package_path}"
|
||||
"${KEYMAN_ROOT}/${npm_package_path}/build.sh build test"
|
||||
"${KEYMAN_ROOT}/${npm_package_path}/build.sh" build test
|
||||
ci_publish_npm_package pack "${npm_package_path}"
|
||||
done
|
||||
}
|
||||
|
|
@ -54,7 +54,7 @@ function do_publish() {
|
|||
|
||||
for npm_package_path in "${PACKAGES[@]}"; do
|
||||
builder_heading "Building and publishing ${npm_package_path}"
|
||||
"${KEYMAN_ROOT}/${npm_package_path}/build.sh build test"
|
||||
"${KEYMAN_ROOT}/${npm_package_path}/build.sh" build test
|
||||
ci_publish_npm_package publish "${npm_package_path}"
|
||||
done
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue