fixing links to github repo - from conserver to bstansell

This commit is contained in:
Bryan Stansell 2020-10-18 23:41:46 -07:00
parent 15359cd1f3
commit f1f3e2a1dc
No known key found for this signature in database
GPG Key ID: 28E4B7253029E7F6
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