You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: install.sh
+4-4
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,5 @@
1
1
#!/bin/sh
2
2
set -e
3
-
# Code generated by godownloader. DO NOT EDIT.
4
-
#
5
3
6
4
usage() {
7
5
this=$1
@@ -88,6 +86,7 @@ get_binaries() {
88
86
linux/mips64le) BINARIES="golangci-lint" ;;
89
87
linux/ppc64le) BINARIES="golangci-lint" ;;
90
88
linux/s390x) BINARIES="golangci-lint" ;;
89
+
linux/riscv64) BINARIES="golangci-lint" ;;
91
90
windows/386) BINARIES="golangci-lint" ;;
92
91
windows/amd64) BINARIES="golangci-lint" ;;
93
92
windows/arm64) BINARIES="golangci-lint" ;;
@@ -230,7 +229,7 @@ uname_os_check() {
230
229
solaris) return 0 ;;
231
230
windows) return 0 ;;
232
231
esac
233
-
log_crit "uname_os_check '$(uname -s)' got converted to '$os' which is not a GOOS value. Please file bug at https://github.com/client9/shlib"
232
+
log_crit "uname_os_check '$(uname -s)' got converted to '$os' which is not a GOOS value."
234
233
return 1
235
234
}
236
235
uname_arch_check() {
@@ -249,9 +248,10 @@ uname_arch_check() {
249
248
mips64) return 0 ;;
250
249
mips64le) return 0 ;;
251
250
s390x) return 0 ;;
251
+
riscv64) return 0 ;;
252
252
amd64p32) return 0 ;;
253
253
esac
254
-
log_crit "uname_arch_check '$(uname -m)' got converted to '$arch' which is not a GOARCH value. Please file bug report at https://github.com/client9/shlib"
254
+
log_crit "uname_arch_check '$(uname -m)' got converted to '$arch' which is not a GOARCH value."
0 commit comments