File tree 4 files changed +24
-27
lines changed
4 files changed +24
-27
lines changed Original file line number Diff line number Diff line change @@ -4,34 +4,31 @@ release:
4
4
owner : alecthomas
5
5
name : chroma
6
6
brews :
7
- -
8
- install : bin.install "chroma"
7
+ - install : bin.install "chroma"
9
8
env :
10
9
- CGO_ENABLED=0
11
10
builds :
12
- - goos :
13
- - linux
14
- - darwin
15
- - windows
16
- goarch :
17
- - arm64
18
- - amd64
19
- - " 386"
20
- goarm :
21
- - " 6"
22
- dir : ./cmd/chroma
23
- main : .
24
- ldflags : -s -w -X main.version={{.Version}} -X main.commit={{.Commit}} -X main.date={{.Date}}
25
- binary : chroma
11
+ - goos :
12
+ - linux
13
+ - darwin
14
+ - windows
15
+ goarch :
16
+ - arm64
17
+ - amd64
18
+ - " 386"
19
+ goarm :
20
+ - " 6"
21
+ dir : ./cmd/chroma
22
+ main : .
23
+ ldflags : -s -w -X main.version={{.Version}} -X main.commit={{.Commit}} -X main.date={{.Date}}
24
+ binary : chroma
26
25
archives :
27
- -
28
- format : tar.gz
29
- name_template : ' {{ .Binary }}-{{ .Version }}-{{ .Os }}-{{ .Arch }}{{ if .Arm }}v{{
30
- .Arm }}{{ end }}'
26
+ - format : tar.gz
27
+ name_template : " {{ .Binary }}-{{ .Version }}-{{ .Os }}-{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}"
31
28
files :
32
29
- COPYING
33
30
- README*
34
31
snapshot :
35
32
name_template : SNAPSHOT-{{ .Commit }}
36
33
checksum :
37
- name_template : ' {{ .ProjectName }}-{{ .Version }}-checksums.txt'
34
+ name_template : " {{ .ProjectName }}-{{ .Version }}-checksums.txt"
Original file line number Diff line number Diff line change 2
2
3
3
set -euo pipefail
4
4
5
- (cd cmd/chroma ; go build -o $TMPDIR /chroma .) && exec $TMPDIR /chroma " $@ "
5
+ go build -C cmd/chroma -o $TMPDIR /chroma . && exec $TMPDIR /chroma " $@ "
Original file line number Diff line number Diff line change 2
2
3
3
set -euo pipefail
4
4
5
- (cd cmd/chromad ; go build -o $TMPDIR /chromad .) && exec $TMPDIR /chromad " $@ "
5
+ go build -C cmd/chromad -o $TMPDIR /chromad . && exec $TMPDIR /chromad " $@ "
Original file line number Diff line number Diff line change 25
25
{{ .CSRFField }}
26
26
27
27
<nav class="level">
28
-
28
+
29
29
<div class="level-left">
30
30
<div class="level-item">
31
31
<div class="label">Code</div>
91
91
<script type="module">
92
92
{{JS "index.js"}}
93
93
</script>
94
- <script type="module" src="https://
unpkg.com /
[email protected] /dist/ionicons/ionicons.esm.js"></script>
95
- <script nomodule src="https://
unpkg.com /
[email protected] /dist/ionicons/ionicons.js"></script>
94
+ <script type="module" src="https://
cdn.jsdelivr.net/npm /
[email protected] /dist/ionicons/ionicons.esm.js"></script>
95
+ <script nomodule src="https://
cdn.jsdelivr.net/npm /
[email protected] /dist/ionicons/ionicons.js"></script>
96
96
</body>
97
- </html>
97
+ </html>
You can’t perform that action at this time.
0 commit comments