summaryrefslogtreecommitdiff
path: root/contrib/python/podman
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2018-12-07 08:31:55 -0800
committerGitHub <noreply@github.com>2018-12-07 08:31:55 -0800
commitd266460f7bdd8d49835c8228fe16706915f92796 (patch)
treeeb6c2fc7d22912cb2a28cf20a61495ef3f83c77e /contrib/python/podman
parent49d9a8f9518dd3d38219f5ead6782d4919433cfc (diff)
parentc60489da47228234fd526cd67d065f9a28aafcb8 (diff)
downloadpodman-d266460f7bdd8d49835c8228fe16706915f92796.tar.gz
podman-d266460f7bdd8d49835c8228fe16706915f92796.tar.bz2
podman-d266460f7bdd8d49835c8228fe16706915f92796.zip
Merge pull request #1893 from jwhonce/bug/1869
Refactor CLI booleans to be consistent and defined behavior
Diffstat (limited to 'contrib/python/podman')
-rw-r--r--contrib/python/podman/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/python/podman/Makefile b/contrib/python/podman/Makefile
index 11a7568d1..0cbfe2fb3 100644
--- a/contrib/python/podman/Makefile
+++ b/contrib/python/podman/Makefile
@@ -1,6 +1,6 @@
PYTHON ?= $(shell command -v python3 2>/dev/null || command -v python)
DESTDIR ?= /
-PODMAN_VERSION ?= '0.0.4'
+PODMAN_VERSION ?= '0.11.1.1'
.PHONY: python-podman
python-podman:
@@ -22,8 +22,8 @@ install:
.PHONY: upload
upload:
- $(PODMAN_VERSION) $(PYTHON) setup.py sdist bdist_wheel
- twine upload --repository-url https://test.pypi.org/legacy/ dist/*
+ PODMAN_VERSION=$(PODMAN_VERSION) $(PYTHON) setup.py sdist bdist_wheel
+ twine upload --verbose --repository-url https://test.pypi.org/legacy/ dist/*
.PHONY: clobber
clobber: uninstall clean