From 5b941cab0c20e700dcf970050560dd6ae3577d04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Mon, 24 Oct 2022 11:25:26 +0200 Subject: [PATCH] ci: drop unnecessary go get command MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Not sure why that was added at some point, but it doesn't seem necessary, and even if it was `go install` should be used. Signed-off-by: Jakub SokoĊ‚owski --- _assets/ci/Jenkinsfile.ios | 1 - 1 file changed, 1 deletion(-) diff --git a/_assets/ci/Jenkinsfile.ios b/_assets/ci/Jenkinsfile.ios index 9e9bc24fa..083b1998f 100644 --- a/_assets/ci/Jenkinsfile.ios +++ b/_assets/ci/Jenkinsfile.ios @@ -54,7 +54,6 @@ pipeline { stage('Compile') { steps { dir(env.REPO) { sh 'make statusgo-ios' - sh 'go get golang.org/x/tools/go/packages' dir('build/bin') { sh 'zip -r status-go-ios.zip Statusgo.framework' sh "cp status-go-ios.zip ${env.ARTIFACT}"