summaryrefslogtreecommitdiff
path: root/contrib/python/pypodman/Makefile
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/pypodman/Makefile
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/pypodman/Makefile')
-rw-r--r--contrib/python/pypodman/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/python/pypodman/Makefile b/contrib/python/pypodman/Makefile
index 272145c5d..230eee44d 100644
--- a/contrib/python/pypodman/Makefile
+++ b/contrib/python/pypodman/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-pypodman
python-pypodman:
@@ -22,7 +22,7 @@ install:
.PHONY: upload
upload:
- $(PODMAN_VERSION) $(PYTHON) setup.py sdist bdist_wheel
+ PODMAN_VERSION=$(PODMAN_VERSION) $(PYTHON) setup.py sdist bdist_wheel
twine upload --repository-url https://test.pypi.org/legacy/ dist/*
.PHONY: clobber