summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2015-04-17 15:01:15 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2015-04-17 15:01:15 -0400
commit05de42acad31de8d581ee1718e5e72fe8554ba0d (patch)
tree18b5660fff9270915b5809bca6c6b04d2439f841
parent573459de893b6d6df6a08466b1d015fd9dedbd46 (diff)
parabolaweb-update: there are now dependencies between fixturesv20150417
-rw-r--r--parabolaweb-update.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/parabolaweb-update.in b/parabolaweb-update.in
index 2fed114..4306b8b 100644
--- a/parabolaweb-update.in
+++ b/parabolaweb-update.in
@@ -58,10 +58,10 @@ update-database() {
./manage.py update_types_permissions
fi
msg2 "Loading fixtures..."
- local file
- for file in */fixtures/*.json; do
- ./manage.py loaddata "$file" || true
- done
+ ./manage.py loaddata main/fixtures/*.json
+ ./manage.py loaddata devel/fixtures/*.json
+ ./manage.py loaddata mirrors/fixtures/*.json
+ ./manage.py loaddata releng/fixtures/*.json
}
update-filesystem() {