summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2013-11-23 04:03:10 -0500
committerLuke Shumaker <LukeShu@sbcglobal.net>2013-11-23 04:03:10 -0500
commitc885a75d6fa46e2138eb7ee2236516756d2dea1c (patch)
treee15e4f9152807644eddd071738e2103c500bd89d
parentd7ca3dc3096a9d4dce5f4f7005145dfac4b91f57 (diff)
go back to loading fixtures piece-wise
-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() {