Skip to content

Commit 24c78da

Browse files
author
Vitaly Korolev
committed
fix gotestsum installation
1 parent c1efc95 commit 24c78da

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Jenkinsfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ void preBuildCheck() {
4444
sh '''
4545
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b /space/go/bin v1.50.0
4646
wget https://github.com/gotestyourself/gotestsum/releases/download/v1.12.0/gotestsum_1.12.0_linux_amd64.tar.gz -O gotestsum.tar.gz
47-
tar -xf gotestsum.tar.gz -C /space/go/bin/gotestsum
47+
mkdir -p /space/go/bin/
48+
tar -xf gotestsum.tar.gz -C /space/go/bin/
4849
'''
4950
}
5051

0 commit comments

Comments
 (0)