Skip to content

update gitwatch to v1.5.1 (#88) #89

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 27, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/picostack/pico
go 1.13

require (
github.com/Southclaws/gitwatch v1.5.0
github.com/Southclaws/gitwatch v1.5.1
github.com/cpuguy83/go-md2man/v2 v2.0.0 // indirect
github.com/eapache/go-resiliency v1.2.0
github.com/frankban/quicktest v1.4.1 // indirect
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ github.com/Southclaws/gitwatch v1.4.2 h1:7HrA4sGCV+a1LHxiBf5vOO06CMKb6cYiVaATPoz
github.com/Southclaws/gitwatch v1.4.2/go.mod h1:xCudUiwWxkDYZ69cEhlTwAKIzbG1OpnA/s/pjPIW6gU=
github.com/Southclaws/gitwatch v1.5.0 h1:SEafeI+2krvRmSxinXXl3dotb35eJIXSh0b5jpLk+X0=
github.com/Southclaws/gitwatch v1.5.0/go.mod h1:xCudUiwWxkDYZ69cEhlTwAKIzbG1OpnA/s/pjPIW6gU=
github.com/Southclaws/gitwatch v1.5.1 h1:2HqCcZqRn/ud/0nKQU77PCallkz8Tvvl9V6uRODHh/U=
github.com/Southclaws/gitwatch v1.5.1/go.mod h1:xCudUiwWxkDYZ69cEhlTwAKIzbG1OpnA/s/pjPIW6gU=
github.com/alcortesm/tgz v0.0.0-20161220082320-9c5fe88206d7 h1:uSoVVbwJiQipAclBbw+8quDsfcvFjOpI5iCf4p/cqCs=
github.com/alcortesm/tgz v0.0.0-20161220082320-9c5fe88206d7/go.mod h1:6zEj6s6u/ghQa61ZWa/C2Aw3RkjiTBOix7dkqa1VLIs=
github.com/anmitsu/go-shlex v0.0.0-20161002113705-648efa622239 h1:kFOfPq6dUM1hTo4JG6LR5AXSUEsOjtdm0kw0FtQtMJA=
Expand Down
1 change: 1 addition & 0 deletions reconfigurer/git.go
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ func (p *GitProvider) watchConfig() (err error) {
p.directory,
p.authMethod,
false)
p.configWatcher.UseForce = true
if err != nil {
return errors.Wrap(err, "failed to watch config target")
}
Expand Down
1 change: 1 addition & 0 deletions watcher/git.go
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,7 @@ func (w *GitWatcher) watchTargets() (err error) {
w.directory,
nil,
false)
w.targetsWatcher.UseForce = true
if err != nil {
return errors.Wrap(err, "failed to watch targets")
}
Expand Down