diff options
author | Florian Pritz <bluewind@xssn.at> | 2009-08-12 12:49:05 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xssn.at> | 2009-08-12 12:49:05 +0200 |
commit | 702a3d5b092feb07625958a31dc225863319a10e (patch) | |
tree | e185d5afcc5fbed9716504a8cac78c19ea022c77 /blazeblogger-git | |
parent | 14f83f130f2722d567f1fb8cee8981649f29a96b (diff) | |
download | aur-packages-702a3d5b092feb07625958a31dc225863319a10e.tar.gz aur-packages-702a3d5b092feb07625958a31dc225863319a10e.tar.xz |
fixed _gitname
Diffstat (limited to 'blazeblogger-git')
-rw-r--r-- | blazeblogger-git/PKGBUILD | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/blazeblogger-git/PKGBUILD b/blazeblogger-git/PKGBUILD index 5dfd682..2458eb5 100644 --- a/blazeblogger-git/PKGBUILD +++ b/blazeblogger-git/PKGBUILD @@ -1,7 +1,7 @@ # Contributor: Florian Pritz <bluewind@xssn.at> # Contributor: Abakus <java5@arcor.de> pkgname=blazeblogger-git -pkgver=20090811 +pkgver=20090812 pkgrel=1 pkgdesc="is a simple-to-use but capable CMS for the command line" arch=('any') @@ -14,14 +14,14 @@ source=() md5sums=() _gitroot="git://gitorious.org/blazeblogger/mainline.git" -_gitname="blazeblogger" +_gitname="mainline" build() { cd "$srcdir" msg "Connecting to GIT server...." - if [ -d "mainline" ] ; then - cd "mainline" && git pull origin + if [ -d "${_gitname}" ] ; then + cd "${_gitname}" && git pull origin msg "The local files are updated." else git clone $_gitroot |