Commit ce0d03abcdf676981d3daaca366984d4eb787331
1 parent
ea0ab128
Exists in
master
and in
29 other branches
Fix typo on quick-start
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
script/quick-start
... | ... | @@ -69,7 +69,7 @@ fi |
69 | 69 | # create the database with sample data |
70 | 70 | run cp config/database.yml.pgsql config/database.yml |
71 | 71 | sudo -u postgres createuser $USER --no-superuser --createdb --no-createrole |
72 | -sed -ri "s/username: noosfero/username: $USER/" | |
72 | +sed -ri "s/username: noosfero/username: $USER/" config/database.yml | |
73 | 73 | sudo -u postgres createdb noosfero_development -O $USER |
74 | 74 | run rake db:schema:load |
75 | 75 | run rake db:data:minimal | ... | ... |