Commit 750b1d51 by Xavier Antoviaque

Install steps - Fixes syntax of `update_templates` django command

parent f27f664d
...@@ -110,7 +110,7 @@ CMS templates. Fortunately, `rake` will do all of this for you! Just run: ...@@ -110,7 +110,7 @@ CMS templates. Fortunately, `rake` will do all of this for you! Just run:
$ rake django-admin[syncdb] $ rake django-admin[syncdb]
$ rake django-admin[migrate] $ rake django-admin[migrate]
$ rake django-admin[update_templates] $ rake cms:update_templates
If you are running these commands using the [`zsh`](http://www.zsh.org/) shell, If you are running these commands using the [`zsh`](http://www.zsh.org/) shell,
zsh will assume that you are doing zsh will assume that you are doing
......
...@@ -207,7 +207,8 @@ case `uname -s` in ...@@ -207,7 +207,8 @@ case `uname -s` in
distro=`lsb_release -cs` distro=`lsb_release -cs`
case $distro in case $distro in
wheezy|jessie|maya|olivia|nadia|precise|quantal) wheezy|jessie|maya|olivia|nadia|precise|quantal)
warning "Debian support is not fully debugged. Assuming you have standard warning "
Debian support is not fully debugged. Assuming you have standard
development packages already working like scipy rvm, the development packages already working like scipy rvm, the
installation should go fine, but this is still a work in progress. installation should go fine, but this is still a work in progress.
...@@ -219,7 +220,8 @@ case `uname -s` in ...@@ -219,7 +220,8 @@ case `uname -s` in
read dummy read dummy
sudo apt-get install git ;; sudo apt-get install git ;;
squeeze|lisa|katya|oneiric|natty|raring) squeeze|lisa|katya|oneiric|natty|raring)
warning "It seems like you're using $distro which has been deprecated. warning "
It seems like you're using $distro which has been deprecated.
While we don't technically support this release, the install While we don't technically support this release, the install
script will probably still work. script will probably still work.
...@@ -499,7 +501,7 @@ mkdir "$BASE/data" || true ...@@ -499,7 +501,7 @@ mkdir "$BASE/data" || true
rake django-admin[syncdb] rake django-admin[syncdb]
rake django-admin[migrate] rake django-admin[migrate]
rake django-admin[update-templates] rake cms:update_templates
# Configure Git # Configure Git
output "Fixing your git default settings" output "Fixing your git default settings"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment