Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Install steps - Fixes syntax of update_templates django command #35

Merged
merged 1 commit into from
Jun 3, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ CMS templates. Fortunately, `rake` will do all of this for you! Just run:

$ rake django-admin[syncdb]
$ 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,
zsh will assume that you are doing
Expand Down
8 changes: 5 additions & 3 deletions scripts/create-dev-env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,8 @@ case `uname -s` in
distro=`lsb_release -cs`
case $distro in
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
installation should go fine, but this is still a work in progress.

Expand All @@ -219,7 +220,8 @@ case `uname -s` in
read dummy
sudo apt-get install git ;;
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
script will probably still work.

Expand Down Expand Up @@ -499,7 +501,7 @@ mkdir "$BASE/data" || true

rake django-admin[syncdb]
rake django-admin[migrate]
rake django-admin[update-templates]
rake cms:update_templates
# Configure Git

output "Fixing your git default settings"
Expand Down