Skip to content

Commit 213c1cb

Browse files
authored
Merge pull request #17 from commander-cli/migrate-repo
Transfer repo to commander-cli/cmd
2 parents 3c50ae7 + bf6e4ec commit 213c1cb

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ language: go
33
env:
44
global:
55
- GO111MODULE=on
6-
- CC_TEST_REPORTER_ID=1fee6b47ad638c3cb28b932d28413d643a06c90b277bc5839e306f40e932422e
6+
- CC_TEST_REPORTER_ID=8eeb867f8e7a0cbfc8d6a71615c52dcb88f87d4a72bbe00f0f2ebbc02b031de8
77

88
stages:
99
- test
@@ -17,7 +17,7 @@ dist: trusty
1717
before_install:
1818
- go get -u golang.org/x/lint/golint
1919
- make deps
20-
- curl -L https://github.com/SimonBaeumer/commander/releases/download/v0.3.0/commander-linux-amd64 -o ~/bin/commander
20+
- curl -L https://github.com/commander-cli/commander/releases/download/v0.3.0/commander-linux-amd64 -o ~/bin/commander
2121
- chmod +x ~/bin/commander
2222

2323
jobs:

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
[![Build Status](https://travis-ci.org/SimonBaeumer/cmd.svg?branch=master)](https://travis-ci.org/SimonBaeumer/cmd)
2-
[![GoDoc](https://godoc.org/github.com/SimonBaeumer/cmd?status.svg)](https://godoc.org/github.com/SimonBaeumer/cmd)
2+
[![GoDoc](https://godoc.org/github.com/commander-cli/cmd?status.svg)](https://godoc.org/github.com/commander-cli/cmd)
33
[![Test Coverage](https://api.codeclimate.com/v1/badges/af3487439a313d580619/test_coverage)](https://codeclimate.com/github/SimonBaeumer/cmd/test_coverage)
44
[![Maintainability](https://api.codeclimate.com/v1/badges/af3487439a313d580619/maintainability)](https://codeclimate.com/github/SimonBaeumer/cmd/maintainability)
5-
[![Go Report Card](https://goreportcard.com/badge/github.com/SimonBaeumer/cmd)](https://goreportcard.com/report/github.com/SimonBaeumer/cmd)
5+
[![Go Report Card](https://goreportcard.com/badge/github.com/commander-cli/cmd)](https://goreportcard.com/report/github.com/commander-cli/cmd)
66

77
# cmd package
88

99
A simple package to execute shell commands on linux, darwin and windows.
1010

1111
## Installation
1212

13-
`$ go get -u github.com/SimonBaeumer/[email protected]`
13+
`$ go get -u github.com/commander-cli/[email protected]`
1414

1515
## Usage
1616

examples/standard_streams.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package examples
22

3-
import "github.com/SimonBaeumer/cmd"
3+
import "github.com/commander-cli/cmd"
44

55
// CreateNewCommandWithStandardStream create new standard stream example
66
func CreateNewCommandWithStandardStream() {

examples/working_dir.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package examples
22

3-
import "github.com/SimonBaeumer/cmd"
3+
import "github.com/commander-cli/cmd"
44

55
// CreateWithWorkingDir sets the current working directory
66
func CreateWithWorkingDir() {

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/SimonBaeumer/cmd
1+
module github.com/commander-cli/cmd
22

33
go 1.12
44

0 commit comments

Comments
 (0)