From e57712ff304b0550ab3db55099e0d587f72b5f1b Mon Sep 17 00:00:00 2001 From: prateekpandey14 Date: Fri, 8 May 2020 12:10:44 +0530 Subject: [PATCH] refact(build): fix cstor base image tag The docker tags are created by removing the v from prefix of TRAVIS_TAG (github tag). Using TRAVIS_TAG to fetch cstor base image fails to build cstor related containers. Signed-off-by: prateekpandey14 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ea460802..452adca2 100644 --- a/Makefile +++ b/Makefile @@ -73,7 +73,7 @@ ifeq (${TRAVIS_TAG}, ) BASE_TAG = ci export BASE_TAG else - BASE_TAG = ${TRAVIS_TAG} + BASE_TAG = ${TRAVIS_TAG#v} export BASE_TAG endif