fix: use default

This commit is contained in:
decentral1se 2021-12-11 20:13:55 +01:00
parent 85a543afac
commit 8e56607cc9
Signed by: decentral1se
GPG Key ID: 03789458B3D0C410
1 changed files with 2 additions and 1 deletions

View File

@ -128,7 +128,8 @@ func getExcludesFile(cfg *gitConfigPkg.Config) string {
}
}
}
return ""
return "~/.gitignore"
}
func parseExcludesFile(excludesfile string) ([]gitignore.Pattern, error) {