Merge pull request #17250 from karalabe/fix-clean

build: fix bash->sh function declaration
pull/17251/head
Péter Szilágyi 7 years ago committed by GitHub
commit a511f6b515
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      build/clean_go_build_cache.sh

@ -1,6 +1,8 @@
#!/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//')

Loading…
Cancel
Save