good morning!!!!

Skip to content
Snippets Groups Projects
Unverified Commit 514022bd authored by Péter Szilágyi's avatar Péter Szilágyi Committed by GitHub
Browse files

Merge pull request #17252 from karalabe/travis-debsrc-fix

build: noop clean during travis debsrc assembly step
parents a511f6b5 ff22ec31
No related branches found
No related tags found
No related merge requests found
#!/bin/sh
# Cleaning the Go cache only makes sense if we actually have Go installed... or
# if Go is actually callable. This does not hold true during deb packaging, so
# we need an explicit check to avoid build failures.
if ! command -v go > /dev/null; then
exit
fi
version_gt() {
test "$(printf '%s\n' "$@" | sort -V | head -n 1)" != "$1"
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment