Compare commits

..

No commits in common. "4f9d2cdecddd14330335464cc13202f2030a9bef" and "c3981ad95cc03cf25d786c6afc4eb7e0870d0e64" have entirely different histories.

3 changed files with 0 additions and 6 deletions

View File

@ -1,5 +1,3 @@
SHELL = /bin/bash
ifeq ($(PREFIX),) ifeq ($(PREFIX),)
PREFIX := /usr/local PREFIX := /usr/local
endif endif

View File

@ -340,9 +340,6 @@ func resolveCommand() {
// Search for packages // Search for packages
for _, pkg := range pkgs { for _, pkg := range pkgs {
if slices.Contains(utils.BPMConfig.IgnorePackages, pkg) {
continue
}
entry, _, err := utils.GetRepositoryEntry(pkg) entry, _, err := utils.GetRepositoryEntry(pkg)
if err != nil { if err != nil {
continue continue

View File

@ -11,7 +11,6 @@ type BPMConfigStruct struct {
SilentCompilation bool `yaml:"silent_compilation"` SilentCompilation bool `yaml:"silent_compilation"`
BinaryOutputDir string `yaml:"binary_output_dir"` BinaryOutputDir string `yaml:"binary_output_dir"`
CompilationDir string `yaml:"compilation_dir"` CompilationDir string `yaml:"compilation_dir"`
IgnorePackages []string `yaml:"ignore_packages"`
Repositories []*Repository `yaml:"repositories"` Repositories []*Repository `yaml:"repositories"`
} }