Skip to content

Commit

Permalink
Make the linter happy
Browse files Browse the repository at this point in the history
  • Loading branch information
aduffeck committed Feb 12, 2024
1 parent 5350a5c commit 08a5ed4
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions inotifywaitgo/command.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,7 @@ func GenerateBashCommands(s *Settings) ([]string, error) {
if !Contains(VALID_EVENTS, int(event)) {
return nil, errors.New(INVALID_EVENT)
}
baseCmd = append(baseCmd, "-e ")
baseCmd = append(baseCmd, EVENT_MAP[int(event)])
baseCmd = append(baseCmd, "-e ", EVENT_MAP[int(event)])
}
}

Expand Down

0 comments on commit 08a5ed4

Please sign in to comment.