Skip to content

Commit e86480e

Browse files
committed
misc tweaks
1 parent 6cb3a72 commit e86480e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ cpu.out
9595
!/web_src/fomantic/build/themes/default/assets/fonts/outline-icons.woff2
9696
/VERSION
9797
/.air
98-
/.licenses
98+
/.go-licenses
9999

100100
# Snapcraft
101101
snap/.snapcraft/

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ SVG_DEST_DIR := public/img/svg
115115

116116
AIR_TMP_DIR := .air
117117

118-
GO_LICENSE_TMP_DIR := .licenses
118+
GO_LICENSE_TMP_DIR := .go-licenses
119119
GO_LICENSE_FILE := assets/go-licenses.txt
120120

121121
TAGS ?=

build/generate-go-licenses.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ async function main() {
2222
const str = glob(['**/*']).filter((path) => {
2323
return /\/((UN)?LICEN(S|C)E|COPYING|NOTICE)/i.test(path);
2424
}).sort().map((path) => {
25-
const body = wrapAnsi(readFileSync(join(base, path), 'utf8') || '', 80);
2625
const name = dirname(path);
26+
const body = wrapAnsi(readFileSync(join(base, path), 'utf8') || '', 80);
2727
return `${line}\n${name}\n${line}\n${body}`;
2828
}).join('\n');
2929
writeFileSync(out, str);

0 commit comments

Comments
 (0)