-
Notifications
You must be signed in to change notification settings - Fork 9
/
get.go
47 lines (37 loc) · 1.13 KB
/
get.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
// Copyright 2022 Namespace Labs Inc; All rights reserved.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
package mod
import (
"context"
"github.com/spf13/cobra"
"namespacelabs.dev/foundation/internal/cli/fncobra"
"namespacelabs.dev/foundation/internal/parsing"
"namespacelabs.dev/foundation/std/module"
)
func newGetCmd() *cobra.Command {
cmd := &cobra.Command{
Use: "get <module-uri>",
Short: "Gets the latest version of the specified module.",
Args: cobra.ExactArgs(1),
RunE: fncobra.RunE(func(ctx context.Context, args []string) error {
root, err := module.FindRootWithArgs(ctx, ".", parsing.ModuleAtArgs{SkipAPIRequirements: true})
if err != nil {
return err
}
dep, err := parsing.ResolveModuleVersion(ctx, args[0])
if err != nil {
return err
}
if _, err := parsing.DownloadModule(ctx, dep, false); err != nil {
return err
}
newData := root.EditableWorkspace().WithSetDependency(dep)
if newData != nil {
return rewriteWorkspace(ctx, root, newData)
}
return nil
}),
}
return cmd
}