Simplify stringset function names

Now that stringset has its own module we can use more basic function
names while keeping it obvious what it does.
This commit is contained in:
morganamilo
2019-10-16 22:58:55 +01:00
parent dacd77012c
commit b60a888981
4 changed files with 14 additions and 14 deletions

2
vcs.go
View File

@@ -38,7 +38,7 @@ func createDevelDB() error {
}
bases := getBases(info)
toSkip := pkgbuildsToSkip(bases, stringset.SliceToStringSet(remoteNames))
toSkip := pkgbuildsToSkip(bases, stringset.FromSlice(remoteNames))
_, err = downloadPkgbuilds(bases, toSkip, config.BuildDir)
if err != nil {
return err