Unverified Commit a511f6b5 authored by Péter Szilágyi's avatar Péter Szilágyi Committed by GitHub

Merge pull request #17250 from karalabe/fix-clean

build: fix bash->sh function declaration
parents 6c412e31 8b1e14b7
#!/bin/sh
function version_gt() { test "$(printf '%s\n' "$@" | sort -V | head -n 1)" != "$1"; }
version_gt() {
test "$(printf '%s\n' "$@" | sort -V | head -n 1)" != "$1"
}
golang_version=$(go version |cut -d' ' -f3 |sed 's/go//')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment