1#!/bin/bash 2set -euE -o pipefail 3 4# capture Go psuedo version 5version="$(go run ./tools/src/goversion)" 6 7# output the tag version so that it can be used by CI for things such as container scanning 8echo "${version:1}"
View as plain text