Skip to content

Commit

Permalink
added show targets for inspecting package contents
Browse files Browse the repository at this point in the history
  • Loading branch information
skaes committed Jul 11, 2024
1 parent 03b4057 commit baf1155
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Makefile.docker
Original file line number Diff line number Diff line change
Expand Up @@ -162,3 +162,14 @@ publish-noble-usr-local:

.PHONY: all
all: containers tag push release packages publish

.PHONY: show-focal show-jammy show-noble
show-focal:
docker run --rm -it -v `pwd`/packages/ubuntu/focal:/src ubuntu:focal bash -c 'dpkg -I /src/logjam-tools_$(VERSION)_$(ARCH).deb'
docker run --rm -it -v `pwd`/packages/ubuntu/focal:/src ubuntu:focal bash -c 'dpkg -c /src/logjam-tools_$(VERSION)_$(ARCH).deb'
show-jammy:
docker run --rm -it -v `pwd`/packages/ubuntu/jammy:/src ubuntu:jammy bash -c 'dpkg -I /src/logjam-tools_$(VERSION)_$(ARCH).deb'
docker run --rm -it -v `pwd`/packages/ubuntu/jammy:/src ubuntu:jammy bash -c 'dpkg -c /src/logjam-tools_$(VERSION)_$(ARCH).deb'
show-noble:
docker run --rm -it -v `pwd`/packages/ubuntu/noble:/src ubuntu:noble bash -c 'dpkg -I /src/logjam-tools_$(VERSION)_$(ARCH).deb'
docker run --rm -it -v `pwd`/packages/ubuntu/noble:/src ubuntu:noble bash -c 'dpkg -c /src/logjam-tools_$(VERSION)_$(ARCH).deb'

0 comments on commit baf1155

Please sign in to comment.