-
Notifications
You must be signed in to change notification settings - Fork 63
/
utils.go
67 lines (53 loc) · 1.48 KB
/
utils.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
// SPDX-License-Identifier: BSD-3-Clause
// Copyright (c) 2023, Unikraft GmbH and The KraftKit Authors.
// Licensed under the BSD-3-Clause License (the "License").
// You may not use this file except in compliance with the License.
package pkg
import (
"context"
"os"
"strings"
"kraftkit.sh/unikraft/app"
)
// initProject sets up the project based on the provided context and
// options.
func (opts *PkgOptions) initProject(ctx context.Context) error {
var err error
popts := []app.ProjectOption{
app.WithProjectWorkdir(opts.Workdir),
}
if len(opts.Kraftfile) > 0 {
popts = append(popts, app.WithProjectKraftfile(opts.Kraftfile))
} else {
popts = append(popts, app.WithProjectDefaultKraftfiles())
}
// Interpret the project directory
opts.Project, err = app.NewProjectFromOptions(ctx, popts...)
if err != nil {
return err
}
return nil
}
// aggregateEnvs aggregates the environment variables from the project and
// the cli options, filling in missing values with the host environment.
func (opts *PkgOptions) aggregateEnvs() []string {
envs := make(map[string]string)
if opts.Project.Env() != nil {
envs = opts.Project.Env()
}
// Add the cli environment
for _, env := range opts.Env {
if strings.ContainsRune(env, '=') {
parts := strings.SplitN(env, "=", 2)
envs[parts[0]] = parts[1]
continue
}
envs[env] = os.Getenv(env)
}
// Aggregate all the environment variables
var env []string
for k, v := range envs {
env = append(env, k+"="+v)
}
return env
}