Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
makiuchi-d committed Apr 17, 2024
1 parent 6783718 commit c57c1dd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Expand Up @@ -17,7 +17,7 @@ jobs:
with:
go-version-file: "go.mod"
cache: true
cache-dependency-path: "server/go.sum"
cache-dependency-path: "go.sum"
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Expand Up @@ -18,7 +18,7 @@ jobs:
with:
go-version-file: "go.mod"
cache: true
cache-dependency-path: "server/go.sum"
cache-dependency-path: "go.sum"

- name: Test
run: go test -v -race -shuffle=on ./...
Expand Down
4 changes: 2 additions & 2 deletions arelo.go
Expand Up @@ -60,7 +60,7 @@ func main() {
*patterns = []string{"**"}
}
sig, sigstr := parseSignalOption(*sigopt)
filtOp, err := parseFileters(*filters)
filtOp, err := parseFilters(*filters)
if err != nil {
log.Fatalf("[ARELO] %v", err)
}
Expand Down Expand Up @@ -145,7 +145,7 @@ func versionstr() string {
return info.Main.Version
}

func parseFileters(filters []string) (fsnotify.Op, error) {
func parseFilters(filters []string) (fsnotify.Op, error) {
var op fsnotify.Op
for _, f := range filters {
switch strings.ToUpper(f) {
Expand Down

0 comments on commit c57c1dd

Please sign in to comment.