Skip to content

Commit

Permalink
refact(build): fix cstor base image tag
Browse files Browse the repository at this point in the history
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 <prateek.pandey@mayadata.io>
  • Loading branch information
prateekpandey14 authored and kmova committed May 8, 2020
1 parent 0de93a3 commit 5303f2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 5303f2c

Please sign in to comment.