From a0a55e2144a00b1851c19661cb4f6b5749737ced Mon Sep 17 00:00:00 2001 From: Jason Mobarak Date: Fri, 1 Mar 2019 12:33:55 -0800 Subject: [PATCH] Explicitly pass pypi info --- python/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/Makefile b/python/Makefile index 043cdf40fc..f3fd0493a8 100644 --- a/python/Makefile +++ b/python/Makefile @@ -5,7 +5,7 @@ DEPLOY_PYTHON := $(CURDIR)/deploy.sh .PHONY: deploy ifneq ($(HAS_NIX),) -DEPLOY_COMMAND := nix-shell ../default.nix --pure --run "SBP_VERSION=$(SBP_VERSION) $(DEPLOY_PYTHON)" +DEPLOY_COMMAND := nix-shell ../default.nix --pure --run "PYPI_USERNAME=$(PYPI_USERNAME) PYPI_PASSWORD=$(PYPI_PASSWORD) SBP_VERSION=$(SBP_VERSION) $(DEPLOY_PYTHON)" else DEPLOY_COMMAND := SBP_VERSION=$(SBP_VERSION) $(SHELL) $(DEPLOY_PYTHON) endif