Skip to content

Commit

Permalink
PMM-7 Fix pmm2-client source debian package. (#2703)
Browse files Browse the repository at this point in the history
  • Loading branch information
talhabinrizwan authored Dec 18, 2023
1 parent c40c594 commit 1db4026
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build/scripts/build-client-deb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ bin_dir=$(cd $(dirname $0); pwd -P)
tmp_dir=${root_dir}/tmp

main() {
local IMAGE=${1:-ubuntu:xenial}
local IMAGE=${1:-ubuntu:focal}
docker run --rm -e DEBIAN_FRONTEND=noninteractive \
-v ${bin_dir}:/home/builder/bin \
-v ${root_dir}/results:/home/builder/results ${IMAGE} sh -c "
Expand Down
6 changes: 4 additions & 2 deletions build/scripts/build-client-sdeb
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,10 @@ bin_dir=$(cd $(dirname $0); pwd -P)
tmp_dir=${root_dir}/tmp

main() {
local IMAGE=${1:-ubuntu:bionic}
docker run --rm -v ${bin_dir}:/home/builder/bin -v ${root_dir}/results:/home/builder/results ${IMAGE} sh -c "
local IMAGE=${1:-ubuntu:focal}
docker run --rm -e DEBIAN_FRONTEND=noninteractive \
-v ${bin_dir}:/home/builder/bin \
-v ${root_dir}/results:/home/builder/results ${IMAGE} sh -c "
set -o errexit
set -o xtrace
Expand Down

0 comments on commit 1db4026

Please sign in to comment.