summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xparabolaweb-update5
1 files changed, 4 insertions, 1 deletions
diff --git a/parabolaweb-update b/parabolaweb-update
index afba1c0..d5bcd18 100755
--- a/parabolaweb-update
+++ b/parabolaweb-update
@@ -58,7 +58,10 @@ update-database() {
./manage.py update_types_permissions
fi
msg2 "Loading fixtures..."
- ./manage.py loaddata */fixtures/*.json
+ local file
+ for file in */fixtures/*.json; do
+ ./manage.py loaddata "$file" || true
+ done
}
update-filesystem() {