diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2015-04-17 15:01:15 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2015-04-17 15:01:15 -0400 |
commit | 05de42acad31de8d581ee1718e5e72fe8554ba0d (patch) | |
tree | 18b5660fff9270915b5809bca6c6b04d2439f841 | |
parent | 573459de893b6d6df6a08466b1d015fd9dedbd46 (diff) |
parabolaweb-update: there are now dependencies between fixturesv20150417
-rw-r--r-- | parabolaweb-update.in | 8 |
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() { |