use project output dir

This commit is contained in:
Git User
2024-06-03 14:45:18 +08:00
parent 1bb6f054f9
commit fe0927ee48
2 changed files with 5 additions and 5 deletions

View File

@@ -54,7 +54,7 @@ docker build \
.
# run the build process
docker run --rm -v $PWD/build:/data/output opensshbuild
docker run --rm -v $PWD/output:/data/output opensshbuild
# clean up docker image
docker image rm opensshbuild
@@ -63,11 +63,11 @@ docker builder prune
## Install DEBs
All DEBs are generated right under `build` directory. (either direct build or docker build).
Generated DEBs are right under the `output` directory. (either direct build or docker build).
```bash
ls -l build/*.deb
ls -l output/*.deb
# Ignore thoses files with dbgsym and tests
find build -maxdepth 1 ! -name '*dbgsym*' ! -name '*tests*' -name '*.deb' | xargs sudo apt install -y
# Ignore dbgsym and tests
find output -maxdepth 1 ! -name '*dbgsym*' ! -name '*tests*' -name '*.deb' | xargs sudo apt install -y
```

0
output/.keep Normal file
View File