summaryrefslogtreecommitdiff
path: root/libre/parabolaweb-utils
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2012-11-15 01:42:27 -0500
committerLuke Shumaker <LukeShu@sbcglobal.net>2012-11-15 01:42:27 -0500
commitb1c72d09dd64bffc2fa820bf0927623efc8a394f (patch)
tree888038bc028cdb119a8a087c36fb63be9843764f /libre/parabolaweb-utils
parentb0575d04cb0bd23a5d0185daccfe5916ce919cac (diff)
improve libre/parabolaweb-utils
Diffstat (limited to 'libre/parabolaweb-utils')
-rw-r--r--libre/parabolaweb-utils/PKGBUILD4
-rw-r--r--libre/parabolaweb-utils/parabolaweb-update9
2 files changed, 7 insertions, 6 deletions
diff --git a/libre/parabolaweb-utils/PKGBUILD b/libre/parabolaweb-utils/PKGBUILD
index bfdfc54da..5fdd12bdb 100644
--- a/libre/parabolaweb-utils/PKGBUILD
+++ b/libre/parabolaweb-utils/PKGBUILD
@@ -8,7 +8,7 @@
pkgname=parabolaweb-utils
pkgver=`_get_pkgver`
-pkgrel=7
+pkgrel=8
pkgdesc="Utils for the Parabola website"
arch=('any')
url="https://projects.parabolagnulinux.org/parabolaweb.git/"
@@ -50,7 +50,7 @@ package() {
md5sums=('SKIP'
'f162c2ce49b4cafe0a14bd4767dfea04'
- '184f3e52781747369d8e26abc9723f7c'
+ '7c212024c134fdd0d0318b52a5448ddb'
'd5294495f42df29d29519ebd0a8f6093'
'cc15e153f99fba82e7bb032896f655c2'
'a468016a7155b5da46521dcfc6428384'
diff --git a/libre/parabolaweb-utils/parabolaweb-update b/libre/parabolaweb-utils/parabolaweb-update
index 178917673..2da9eea8a 100644
--- a/libre/parabolaweb-utils/parabolaweb-update
+++ b/libre/parabolaweb-utils/parabolaweb-update
@@ -18,7 +18,7 @@ clean() {
cd "$WEBDIR"
msg "Purging old .pyc files..."
find . -name '*.pyc' -delete
- msg "Purging GNU Make generated files..."
+ msg "Purging old GNU Make generated files..."
for dir in `find_makefiles`; do
make -C "$WEBDIR/$dir" clean
done
@@ -50,7 +50,7 @@ update-database() {
msg2 "Running migrations..."
./manage.py migrate
if [[ -f devel/management/commands/update_types_permissions.py ]]; then
- msg2 "Updating permission..."
+ msg2 "Updating permissions..."
./manage.py update_types_permissions
fi
msg2 "Loading fixtures..."
@@ -74,10 +74,11 @@ main() {
exit 1
fi
+ if [[ -d "$WEBDIR" ]]; then
+ clean
+ fi
parabolaweb-download
- clean
configure
- clean
update-database
update-filesystem
}