From 90471a6a34528f77897acc8a8b653de91953c3fe Mon Sep 17 00:00:00 2001 From: Lantao Liu Date: Tue, 29 May 2018 17:23:32 -0700 Subject: [PATCH] Make DEPLOY_PATH configurable. Signed-off-by: Lantao Liu --- test/containerd/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/containerd/build.sh b/test/containerd/build.sh index fa9b616e5..1554ec7af 100755 --- a/test/containerd/build.sh +++ b/test/containerd/build.sh @@ -39,7 +39,7 @@ fi # Make sure output directory is clean. make clean # Build and push test tarball. -PUSH_VERSION=true DEPLOY_DIR=containerd \ +PUSH_VERSION=true DEPLOY_DIR=${DEPLOY_DIR:-"containerd"} \ make push TARBALL_PREFIX=containerd-cni \ INCLUDE_CNI=true \ CHECKOUT_CONTAINERD=false \