Skip to content

Commit 4a74e02

Browse files
committed
fixed #28
1 parent 190cdd1 commit 4a74e02

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -543,7 +543,7 @@ func initFastForwardArgs(upstreams []string) (*fastforward.Args, error) {
543543

544544
func loadDomainMatcher(files []string) (*domain.MixMatcher[struct{}], error) {
545545
mixMatcher := domain.NewMixMatcher[struct{}]()
546-
if err := domain.BatchLoad[struct{}](mixMatcher, files, nil); err != nil {
546+
if err := domain.BatchLoad[struct{}](mixMatcher, addFilePrefix(files), nil); err != nil {
547547
return nil, err
548548
}
549549
return mixMatcher, nil

0 commit comments

Comments
 (0)