File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -51,14 +51,14 @@ if [[ -n "${TF_RELEASE}" ]]; then
5151fi
5252
5353# Build!
54- VERSION=" 1.64 .0"
54+ VERSION=" 1.85 .0"
5555echo " ==> Building..."
5656gox \
5757 -os=" ${XC_OS} " \
5858 -arch=" ${XC_ARCH} " \
5959 -osarch=" ${XC_EXCLUDE_OSARCH} " \
6060 -ldflags " ${LD_FLAGS} " \
61- -output " pkg/{{.OS}}_{{.Arch}}/terraform-provider-ibm " \
61+ -output " pkg/{{.OS}}_{{.Arch}}/terraform-provider-ibm_ ${VERSION} _{{.OS}}_{{.Arch}} " \
6262 .
6363
6464# Move all the compiled things to the $GOPATH/bin
@@ -92,10 +92,11 @@ if [ "${TF_DEV}x" = "x" ]; then
9292 echo " ==> Packaging..."
9393 for PLATFORM in $( find ./pkg -mindepth 1 -maxdepth 1 -type d) ; do
9494 OSARCH=$( basename ${PLATFORM} )
95+ ZIPNAME=" terraform-provider-ibm_${VERSION} _${OSARCH} "
9596 echo " --> ${OSARCH} "
9697
9798 pushd $PLATFORM > /dev/null 2>&1
98- zip ../${OSARCH } .zip ./*
99+ zip ../${ZIPNAME } .zip ./*
99100 popd > /dev/null 2>&1
100101 done
101102fi
You can’t perform that action at this time.
0 commit comments