Merge pull request #55 from bstansell/fix-github-pointers

fixing links to github repo - from conserver to bstansell
This commit is contained in:
Bryan Stansell 2020-10-18 23:53:38 -07:00 committed by GitHub
commit 974451e7cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 5 deletions

View File

@ -1,7 +1,7 @@
Conserver
=========
[![Build Status](https://api.cirrus-ci.com/github/conserver/conserver.svg)](https://cirrus-ci.com/github/conserver/conserver)
[![Build Status](https://api.cirrus-ci.com/github/bstansell/conserver.svg)](https://cirrus-ci.com/github/bstansell/conserver)
Conserver is an application that allows multiple users to watch a
serial console at the same time. It can log the data, allows users to
@ -25,7 +25,7 @@ See the `INSTALL` file for installation and the man pages for specifics.
Downloading
-----------
The latest version can be found on [GitHub](https://github.com/conserver/conserver/releases).
The latest version can be found on [GitHub](https://github.com/bstansell/conserver/releases).
Contributions

View File

@ -55,11 +55,11 @@ echo "Ready to push (y/N)?"
read i
if [ "$i" = "y" ]; then
git push --tags
githubrelease release conserver/conserver create --name conserver-$ver --body "$body" v$ver ../conserver-$ver.tar.gz*
githubrelease release bstansell/conserver create --name conserver-$ver --body "$body" v$ver ../conserver-$ver.tar.gz*
echo You can publish this release on the website or with:
echo " "githubrelease release conserver/conserver publish v$ver
echo " "githubrelease release bstansell/conserver publish v$ver
else
echo Ok, here is the command I would have used:
echo " "git push --tags
echo " "githubrelease release conserver/conserver create --name conserver-$ver --body \""$body"\" v$ver ../conserver-$ver.tar.gz*
echo " "githubrelease release bstansell/conserver create --name conserver-$ver --body \""$body"\" v$ver ../conserver-$ver.tar.gz*
fi