pulumi/cmd/lumi/pack_get.go
joeduffy 35aa6b7559 Rename pulumi/lumi to pulumi/pulumi-fabric
We are renaming Lumi to Pulumi Fabric.  This change simply renames the
pulumi/lumi repo to pulumi/pulumi-fabric, without the CLI tools and other
changes that will follow soon afterwards.
2017-08-02 09:25:22 -07:00

35 lines
1 KiB
Go

// Copyright 2016-2017, Pulumi Corporation. All rights reserved.
package main
import (
"github.com/spf13/cobra"
"github.com/pulumi/pulumi-fabric/pkg/util/cmdutil"
"github.com/pulumi/pulumi-fabric/pkg/util/contract"
)
func newPackGetCmd() *cobra.Command {
var global bool
var save bool
var cmd = &cobra.Command{
Use: "get [deps]",
Short: "Download a package",
Long: "Get downloads a package by name. If run without arguments, get will attempt\n" +
"to download dependencies referenced by the current package. Otherwise, if one\n" +
"or more specific dependencies are provided, only those will be downloaded.",
Run: cmdutil.RunFunc(func(cmd *cobra.Command, args []string) error {
contract.Failf("Get command is not yet implemented")
return nil
}),
}
cmd.PersistentFlags().BoolVarP(
&global, "global", "g", false,
"Install to a shared location on this machine")
cmd.PersistentFlags().BoolVarP(
&save, "save", "s", false,
"Save new dependencies in the current package")
return cmd
}