Skip to content

Commit 961488d

Browse files
committed
Migrate to the new org
1 parent b3b79de commit 961488d

21 files changed

+9
-9
lines changed

.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ after_success:
4040
git config --global user.email "[email protected]"
4141
git config --global user.name "Travis CI"
4242
git tag ${CLI_VERSION} -a -m "Generated tag from TravisCI for build $TRAVIS_BUILD_NUMBER"
43-
git push -q https://[email protected]/Verizon/nelson-cli --tags
43+
git push -q https://[email protected]/getnelson/nelson-cli --tags
4444
fi
4545
fi
4646
@@ -53,4 +53,4 @@ deploy:
5353
secure: oJ095mwH0Eic/2MnKOBG0/4FwvFag7lz356vE5pOwXuGP9FQRq9AsuhhCuweRK6wc/cOc4qKEjYXv2TQMF6W716HzGNXJhe72PDX+MSx6QHL+PY2DnUUVaBEl3CG82p0XWAkEeO/pKX/3DjqhehazSVZZNj+s4bGj1I5HzdOQX85yAHtugFeNXmIUbpRTu1M53DpTny4K3dUu9CSyFLA5lqs/uhpIg9FsVkgEaJFijbvgH8kuUyLUSHCDhUD6JQRhhG+f5TYOn6+mOhxC1QLN1kzwh5Kvviw0UfB0h4QPPv6qbuqixwXTzcphWr5Bvvd0vjyd8Dwp5grRqQcUJLI7ACUfbx2C1qEAwgST3BZ45BLyKt51Cf37Yv8ngtjkMqinKh8wmhYU/ibyldc05S5mFR36SZg41BM5wvmQWginLKrb3pOjHIePHAu0LMGGoSKsPoR5lwCD9b4rdajCYlu/glyDh8cfAIWUmfIvKq1eJJJ2Iv/uZGFTQWcc5W4w+EwynUR52HKs5iFbVns/PPqNWeRlGGnFFwKWlCUWX5nriJt7eAF/SPCB1Y/d8TxrE4vwOFQwqtJU3iwMSTCAQymSkh5KQSXd+7NFenUNqZ7SurVDPBNIN1QDU0loFyNJJXXqSu9VYn/aZRn0PQtDUH9gWp/Oy97IzWTMMcZU2jsNlo=
5454
on:
5555
tags: true
56-
repo: Verizon/nelson-cli
56+
repo: getnelson/nelson-cli

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ package: test
3636
mv ${TAR_NAME}.sha1 target/${TAR_NAME}.sha1
3737

3838
format:
39-
go fmt src/github.com/verizon/nelson/*.go
39+
go fmt src/github.com/getnelson/nelson/*.go
4040

4141
clean:
4242
rm -rf bin && \

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
# Nelson CLI
22

3-
[![Build Status](https://travis-ci.org/Verizon/nelson-cli.svg?branch=master)](https://travis-ci.org/Verizon/nelson-cli)
4-
[![Latest Release](https://img.shields.io/github/release/verizon/nelson-cli.svg)](https://github.com/Verizon/nelson-cli/releases)
3+
[![Build Status](https://travis-ci.org/getnelson/nelson-cli.svg?branch=master)](https://travis-ci.org/getnelson/nelson-cli)
4+
[![Latest Release](https://img.shields.io/github/release/getnelson/nelson-cli.svg)](https://github.com/getnelson/nelson-cli/releases)
55

6-
A handy tool for interacting with your installation of [Nelson](https://github.com/Verizon/nelson)
6+
A handy tool for interacting with your installation of [Nelson](https://github.com/getnelson/nelson)
77

88
## Getting Started
99

1010
If you just want to use nelson-cli, then run the following:
1111

1212
```
13-
curl -GqL https://raw.githubusercontent.com/Verizon/nelson-cli/master/scripts/install | bash
13+
curl -GqL https://raw.githubusercontent.com/getnelson/nelson-cli/master/scripts/install | bash
1414
```
1515

1616
This script will download and install the latest version and put it on your `$PATH`. We do not endorse piping scripts from the wire to `bash`, and you should read the script before executing the command. It will:

scripts/install

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ else
1414
fi
1515

1616
function fetch_from_github(){
17-
curl -s https://api.github.com/repos/verizon/nelson-cli/releases | grep browser_download_url | cut -d '"' -f 4 | grep $PLATFORM | head -n 2
17+
curl -s https://api.github.com/repos/getnelson/nelson-cli/releases | grep browser_download_url | cut -d '"' -f 4 | grep $PLATFORM | head -n 2
1818
}
1919

2020
ARTIFACT_URL=$(fetch_from_github | grep -v 'sha1')

src/github.com/verizon/nelson/main.go renamed to src/github.com/getnelson/nelson/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ func main() {
4040
app := cli.NewApp()
4141
app.Name = "nelson-cli"
4242
app.Version = CurrentVersion()
43-
app.Copyright = "© " + strconv.Itoa(year) + " Verizon Labs"
43+
app.Copyright = "© " + strconv.Itoa(year) + " Nelson Project"
4444
app.Usage = "remote control for the Nelson deployment system"
4545
app.EnableBashCompletion = true
4646

0 commit comments

Comments
 (0)