mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 00:15:32 +00:00
docs(linux): Update how to build binary package with docker
The previous command failed if there was more than one *.dsc file. This change now uses the one with the highest version number.
This commit is contained in:
parent
8cbd86a0db
commit
ac8cd01efd
1 changed files with 3 additions and 2 deletions
|
|
@ -112,8 +112,9 @@ You'll have to create the docker image.
|
|||
cd $KEYMAN_ROOT
|
||||
DIST=jammy
|
||||
docker run -v $(pwd):/source -i -t -w /source --platform=amd64 \
|
||||
--env INPUT_DIST=$DIST --env INPUT_SOURCEPACKAGE=$(ls keyman_*.dsc) \
|
||||
--env INPUT_SOURCE_DIR=. sillsdev/$DIST
|
||||
--env INPUT_DIST=$DIST --env INPUT_SOURCE_DIR=. \
|
||||
--env INPUT_SOURCEPACKAGE=$(ls keyman_*.dsc | sort | tail -1) \
|
||||
sillsdev/$DIST
|
||||
```
|
||||
|
||||
This will create the binary packages in `$KEYMAN_ROOT/artifacts`.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue