aboutsummarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Fanninger2015-11-30 17:18:56 +0100
committerThomas Fanninger2015-11-30 17:18:56 +0100
commit5ad1925779e26beccdeba6ce7d78ae051d6aa30a (patch)
tree52dcda2a1f255cb839a2c7ec27c522b0b575d882
parent9d1da1eff514e0c2e3ba8966d94fd0e10166acdd (diff)
downloadaur-5ad1925779e26beccdeba6ce7d78ae051d6aa30a.tar.gz
correct bug with gogs user bash
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD2
-rw-r--r--gogs.install2
3 files changed, 3 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index c8c0418b1792..0775369eb580 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = gogs
pkgdesc = Gogs(Go Git Service) is a Self Hosted Git Service in the Go Programming Language.
pkgver = 0.7.22
- pkgrel = 1
+ pkgrel = 2
epoch = 1
url = http://gogs.io/
install = gogs.install
diff --git a/PKGBUILD b/PKGBUILD
index 25cbfc1289ec..e52defe19cea 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,7 +4,7 @@
pkgname=gogs
_pkgname=${pkgname}
pkgver=0.7.22
-pkgrel=1
+pkgrel=2
epoch=1
pkgdesc="Gogs(Go Git Service) is a Self Hosted Git Service in the Go Programming Language."
arch=('i686' 'x86_64' 'armv6h' 'armv7h')
diff --git a/gogs.install b/gogs.install
index 0402a43106df..ea3a8a227366 100644
--- a/gogs.install
+++ b/gogs.install
@@ -5,7 +5,7 @@ pre_install() {
if ! getent passwd gogs >/dev/null; then
useradd -m --system -c 'gogs daemon users' -g gogs -s /bin/false gogs
fi
- chsh gogs -s /usr/bin/bash
+ chsh gogs -s /bin/bash
}
post_install(){