File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 22/* .woff2
33/* .ttf
44/style.css
5+ /google-font-localizer *
Original file line number Diff line number Diff line change 1+ #! /bin/sh
2+
3+ go build -o google-font-localizer
4+ GOOS=linux GOARCH=amd64 go build -o google-font-localizer-linux-amd64
5+ GOOS=linux GOARCH=arm go build -o google-font-localizer-linux-arm
6+ GOOS=linux GOARCH=arm64 go build -o google-font-localizer-linux-arm64
7+ GOOS=darwin GOARCH=amd64 go build -o google-font-localizer-darwin-amd64
8+ GOOS=darwin GOARCH=arm64 go build -o google-font-localizer-darwin-arm64
Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ import (
1313 "regexp"
1414 "sync"
1515
16- validator "github.com/go-playground/validator/v10"
1716 "github.com/urfave/cli/v2"
1817)
1918
@@ -22,7 +21,6 @@ const (
2221 filePerm = 0663
2322)
2423
25- var validate = validator .New ()
2624var reUrl = regexp .MustCompile (`url\((https:\/\/[^\)]+)\)` )
2725
2826func main () {
You can’t perform that action at this time.
0 commit comments