File tree Expand file tree Collapse file tree 2 files changed +11
-11
lines changed Expand file tree Collapse file tree 2 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -8,14 +8,14 @@ archives:
8
8
format : tar.gz
9
9
name_template : " {{.Binary}}_{{.Version}}_{{.Os}}-{{.Arch}}"
10
10
replacements :
11
- 386 : 32bit
12
- amd64 : 64bit
11
+ amd64 : 64bit_x86
12
+ arm64 : 64bit_arm
13
13
darwin : macOS
14
14
linux : Linux
15
15
16
16
brews :
17
17
- name : maintainer
18
- caveats :
18
+ caveats : ' '
19
19
commit_author :
20
20
name : Kamil Samigullin
21
21
@@ -49,8 +49,8 @@ builds:
49
49
flags :
50
50
- -trimpath
51
51
goarch :
52
- - 386
53
52
- amd64
53
+ - arm64
54
54
goos :
55
55
- darwin
56
56
- linux
Original file line number Diff line number Diff line change 1
1
#! /bin/sh
2
2
set -e
3
- # Code generated by godownloader on 2021-01-01T15:40:52Z . DO NOT EDIT.
3
+ # Code generated by godownloader on 2021-12-11T21:50:23Z . DO NOT EDIT.
4
4
#
5
5
6
6
usage () {
@@ -62,10 +62,10 @@ execute() {
62
62
}
63
63
get_binaries () {
64
64
case " $PLATFORM " in
65
- darwin/386) BINARIES=" maintainer" ;;
66
65
darwin/amd64) BINARIES=" maintainer" ;;
67
- linux/386 ) BINARIES=" maintainer" ;;
66
+ darwin/arm64 ) BINARIES=" maintainer" ;;
68
67
linux/amd64) BINARIES=" maintainer" ;;
68
+ linux/arm64) BINARIES=" maintainer" ;;
69
69
* )
70
70
log_crit " platform $PLATFORM is not supported. Make sure this script is up-to-date and file request at https://github.com/${PREFIX} /issues/new"
71
71
exit 1
@@ -94,8 +94,8 @@ adjust_format() {
94
94
adjust_os () {
95
95
# adjust archive name based on OS
96
96
case ${OS} in
97
- 386 ) OS=32bit ;;
98
- amd64 ) OS=64bit ;;
97
+ amd64 ) OS=64bit_x86 ;;
98
+ arm64 ) OS=64bit_arm ;;
99
99
darwin) OS=macOS ;;
100
100
linux) OS=Linux ;;
101
101
esac
@@ -104,8 +104,8 @@ adjust_os() {
104
104
adjust_arch () {
105
105
# adjust archive name based on ARCH
106
106
case ${ARCH} in
107
- 386 ) ARCH=32bit ;;
108
- amd64 ) ARCH=64bit ;;
107
+ amd64 ) ARCH=64bit_x86 ;;
108
+ arm64 ) ARCH=64bit_arm ;;
109
109
darwin) ARCH=macOS ;;
110
110
linux) ARCH=Linux ;;
111
111
esac
You can’t perform that action at this time.
0 commit comments