mirror of
https://gitea.com/actions/setup-go.git
synced 2024-11-01 01:35:38 +01:00
14 lines
241 B
Bash
Executable File
14 lines
241 B
Bash
Executable File
|
|
#!/bin/sh
|
|
|
|
if [ -z "$1" ]; then
|
|
echo "Must supply go version argument"
|
|
exit 1
|
|
fi
|
|
|
|
go_version="$(go version)"
|
|
echo "Found go version '$go_version'"
|
|
if [ -z "$(echo $go_version | grep $1)" ]; then
|
|
echo "Unexpected version"
|
|
exit 1
|
|
fi |