Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
Ijaz Ahmad
ksonnet
Commits
0eebe49c
Unverified
Commit
0eebe49c
authored
Apr 20, 2018
by
bryanl
Browse files
move cmd to pkg/clicmd
Signed-off-by:
bryanl
<
bryanliles@gmail.com
>
parent
e59d8a6b
Changes
85
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
20 additions
and
20 deletions
+20
-20
pkg/clicmd/env_list.go
pkg/clicmd/env_list.go
+1
-1
pkg/clicmd/env_list_test.go
pkg/clicmd/env_list_test.go
+1
-1
pkg/clicmd/env_rm.go
pkg/clicmd/env_rm.go
+1
-1
pkg/clicmd/env_rm_test.go
pkg/clicmd/env_rm_test.go
+1
-1
pkg/clicmd/env_set.go
pkg/clicmd/env_set.go
+1
-1
pkg/clicmd/env_set_test.go
pkg/clicmd/env_set_test.go
+1
-1
pkg/clicmd/env_targets.go
pkg/clicmd/env_targets.go
+1
-1
pkg/clicmd/env_targets_test.go
pkg/clicmd/env_targets_test.go
+1
-1
pkg/clicmd/env_update.go
pkg/clicmd/env_update.go
+1
-1
pkg/clicmd/env_update_test.go
pkg/clicmd/env_update_test.go
+1
-1
pkg/clicmd/flags.go
pkg/clicmd/flags.go
+1
-1
pkg/clicmd/helpers_test.go
pkg/clicmd/helpers_test.go
+1
-1
pkg/clicmd/import.go
pkg/clicmd/import.go
+1
-1
pkg/clicmd/init.go
pkg/clicmd/init.go
+1
-1
pkg/clicmd/init_test.go
pkg/clicmd/init_test.go
+1
-1
pkg/clicmd/initname_string.go
pkg/clicmd/initname_string.go
+1
-1
pkg/clicmd/module.go
pkg/clicmd/module.go
+1
-1
pkg/clicmd/module_create.go
pkg/clicmd/module_create.go
+1
-1
pkg/clicmd/module_create_test.go
pkg/clicmd/module_create_test.go
+1
-1
pkg/clicmd/module_list.go
pkg/clicmd/module_list.go
+1
-1
No files found.
cmd/env_list.go
→
pkg/cli
cmd/env_list.go
View file @
0eebe49c
...
...
@@ -13,7 +13,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
package
cmd
package
cli
cmd
import
(
"fmt"
...
...
cmd/env_list_test.go
→
pkg/cli
cmd/env_list_test.go
View file @
0eebe49c
...
...
@@ -13,7 +13,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
package
cmd
package
cli
cmd
import
(
"testing"
...
...
cmd/env_rm.go
→
pkg/cli
cmd/env_rm.go
View file @
0eebe49c
...
...
@@ -13,7 +13,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
package
cmd
package
cli
cmd
import
(
"fmt"
...
...
cmd/env_rm_test.go
→
pkg/cli
cmd/env_rm_test.go
View file @
0eebe49c
...
...
@@ -13,7 +13,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
package
cmd
package
cli
cmd
import
(
"testing"
...
...
cmd/env_set.go
→
pkg/cli
cmd/env_set.go
View file @
0eebe49c
...
...
@@ -13,7 +13,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
package
cmd
package
cli
cmd
import
(
"fmt"
...
...
cmd/env_set_test.go
→
pkg/cli
cmd/env_set_test.go
View file @
0eebe49c
...
...
@@ -13,7 +13,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
package
cmd
package
cli
cmd
import
(
"testing"
...
...
cmd/env_targets.go
→
pkg/cli
cmd/env_targets.go
View file @
0eebe49c
...
...
@@ -13,7 +13,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
package
cmd
package
cli
cmd
import
(
"github.com/ksonnet/ksonnet/actions"
...
...
cmd/env_targets_test.go
→
pkg/cli
cmd/env_targets_test.go
View file @
0eebe49c
...
...
@@ -13,7 +13,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
package
cmd
package
cli
cmd
import
(
"testing"
...
...
cmd/env_update.go
→
pkg/cli
cmd/env_update.go
View file @
0eebe49c
...
...
@@ -13,7 +13,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
package
cmd
package
cli
cmd
import
(
"fmt"
...
...
cmd/env_update_test.go
→
pkg/cli
cmd/env_update_test.go
View file @
0eebe49c
...
...
@@ -13,7 +13,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
package
cmd
package
cli
cmd
import
(
"testing"
...
...
cmd/flags.go
→
pkg/cli
cmd/flags.go
View file @
0eebe49c
...
...
@@ -13,7 +13,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
package
cmd
package
cli
cmd
const
(
// For use in the commands (e.g., diff, apply, delete) that require either an
...
...
cmd/helpers_test.go
→
pkg/cli
cmd/helpers_test.go
View file @
0eebe49c
...
...
@@ -13,7 +13,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
package
cmd
package
cli
cmd
import
(
"testing"
...
...
cmd/import.go
→
pkg/cli
cmd/import.go
View file @
0eebe49c
...
...
@@ -13,7 +13,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
package
cmd
package
cli
cmd
import
(
"github.com/ksonnet/ksonnet/actions"
...
...
cmd/init.go
→
pkg/cli
cmd/init.go
View file @
0eebe49c
...
...
@@ -13,7 +13,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
package
cmd
package
cli
cmd
import
(
"errors"
...
...
cmd/init_test.go
→
pkg/cli
cmd/init_test.go
View file @
0eebe49c
...
...
@@ -13,7 +13,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
package
cmd
package
cli
cmd
import
(
"os"
...
...
cmd/initname_string.go
→
pkg/cli
cmd/initname_string.go
View file @
0eebe49c
...
...
@@ -15,7 +15,7 @@
// Code generated by "stringer -type=initName"; DO NOT EDIT.
package
cmd
package
cli
cmd
import
"strconv"
...
...
cmd/module.go
→
pkg/cli
cmd/module.go
View file @
0eebe49c
...
...
@@ -13,7 +13,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
package
cmd
package
cli
cmd
import
"github.com/spf13/cobra"
...
...
cmd/module_create.go
→
pkg/cli
cmd/module_create.go
View file @
0eebe49c
...
...
@@ -13,7 +13,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
package
cmd
package
cli
cmd
import
(
"github.com/ksonnet/ksonnet/actions"
...
...
cmd/module_create_test.go
→
pkg/cli
cmd/module_create_test.go
View file @
0eebe49c
...
...
@@ -13,7 +13,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
package
cmd
package
cli
cmd
import
(
"testing"
...
...
cmd/module_list.go
→
pkg/cli
cmd/module_list.go
View file @
0eebe49c
...
...
@@ -13,7 +13,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
package
cmd
package
cli
cmd
import
(
"github.com/ksonnet/ksonnet/actions"
...
...
Prev
1
2
3
4
5
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment