From fe0927ee48c690d41fc1e7187bdebe0548af4c30 Mon Sep 17 00:00:00 2001 From: Git User Date: Mon, 3 Jun 2024 14:45:18 +0800 Subject: [PATCH] use project output dir --- README.md | 10 +++++----- output/.keep | 0 2 files changed, 5 insertions(+), 5 deletions(-) create mode 100644 output/.keep diff --git a/README.md b/README.md index 41b6bc0..995abcb 100644 --- a/README.md +++ b/README.md @@ -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 ``` diff --git a/output/.keep b/output/.keep new file mode 100644 index 0000000..e69de29