nix-amer/internal/instruction/install.go

36 lines
552 B
Go
Raw Normal View History

package instruction
import (
"fmt"
"strings"
)
type install struct {
2018-11-10 12:20:10 +00:00
raw string
Packages []string
}
2018-11-10 12:20:10 +00:00
func (d *install) Raw() string { return d.raw }
func (d *install) Build(_args string) error {
d.Packages = strings.Split(_args, " ")
2018-11-10 12:20:10 +00:00
d.raw = _args
return nil
}
func (d install) Exec(ctx ExecutionContext) ([]byte, error) {
// install all packages
for _, pkg := range d.Packages {
err := ctx.PackageManager.Install(pkg)
if err != nil {
return nil, fmt.Errorf("cannot install '%s' | %s", pkg, err)
}
}
return nil, nil
}