From e42eb1fb8c4f66126c80e8d23908ddfd50d6879c Mon Sep 17 00:00:00 2001 From: Michael McLoughlin Date: Wed, 5 Dec 2018 00:56:02 -0800 Subject: [PATCH] fix go get command --- script/bootstrap | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script/bootstrap b/script/bootstrap index 15f2f8d..77cc9ca 100755 --- a/script/bootstrap +++ b/script/bootstrap @@ -1,7 +1,7 @@ #!/bin/bash -ex -# We intend that the arch sub-repo should be the only dependency. -go get -v -u golang.org/x/arch +# We intend that the x86 arch sub-repo should be the only dependency. +go get -v -u golang.org/x/arch/x86/... # Install golangci-lint golangci_lint_version='v1.12.3'