diff --git a/group b/group index eccfde2..392304e 100755 --- a/group +++ b/group @@ -25,6 +25,6 @@ if [ $# -eq 1 ]; then echo "[ ] unset category from $REPONAME" else git config -f "/srv/git/$REPOSITORY/config" gitweb.category "$2" - echo "[,] set '$2' as $REPONAME category" + echo "[@] set '$2' as $REPONAME category" fi diff --git a/owner b/owner index 6e3e85c..2fad305 100755 --- a/owner +++ b/owner @@ -25,6 +25,6 @@ if [ $# -eq 1 ]; then echo "[ ] unset owner from $REPONAME" else git config -f "/srv/git/$REPOSITORY/config" gitweb.owner "$2" - echo "['] set '$2' as $REPONAME owner" + echo "[@] set '$2' as $REPONAME owner" fi diff --git a/pic b/pic index 00e1302..b4b34fa 100755 --- a/pic +++ b/pic @@ -22,9 +22,9 @@ fi if [ $# -eq 1 ]; then git config -f "/srv/git/$REPOSITORY/config" --unset cgit.logo - echo "[ ] unset homepage from $REPONAME" + echo "[ ] unset picture from $REPONAME" else git config -f "/srv/git/$REPOSITORY/config" cgit.logo "$2" - echo "[@] set '$2' as $REPONAME homepage" + echo "[@] set '$2' as $REPONAME picture" fi