From 4980c6b317ddb173ca110e31c26d722d80e36991 Mon Sep 17 00:00:00 2001 From: Filippo Valsorda Date: Wed, 26 Feb 2020 15:44:07 -0500 Subject: [PATCH] [dev.boringcrypto] misc/boring: x/build/cmd/release doesn't take subrepo flags anymore According to CL 221097 they only mattered for now-unsupported Go 1.12. Change-Id: I73afb6d976699ca0d84f628f2347a7f628558bee Reviewed-on: https://go-review.googlesource.com/c/go/+/221278 Reviewed-by: Katie Hockman --- misc/boring/build.release | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/misc/boring/build.release b/misc/boring/build.release index 2256ff2e8f..46922c913f 100755 --- a/misc/boring/build.release +++ b/misc/boring/build.release @@ -72,8 +72,8 @@ sha() { fi } shortgo=$(echo "$base" | perl -pe 's/(go\d+\.\d+)(\.\d+|rc\d+)/$1/') -$dir/release -target linux-amd64 -rev "$commit" -version "$version" -tools "release-branch.$shortgo" -net "release-branch.$shortgo" -$dir/release -target src -rev "$commit" -version "$version" -tools "release-branch.$shortgo" -net "release-branch.$shortgo" +$dir/release -target linux-amd64 -rev "$commit" -version "$version" +$dir/release -target src -rev "$commit" -version "$version" output="$version.linux-amd64.tar.gz" ls -l "$output" sha256=$(sha "$output" | awk '{print $1}') -- 2.50.0