Commit e54b0e127d8b4d0581bf9ffaaa1a2824309d1759
1 parent
04a6bb76
Exists in
master
and in
1 other branch
fixing read only problem
Showing
1 changed file
with
1 additions
and
0 deletions
Show diff stats
script/create_project
... | ... | @@ -63,6 +63,7 @@ Dir.glob("#{project_directory}/**/session_store.rb").each do |file| |
63 | 63 | end |
64 | 64 | |
65 | 65 | run("sudo mv public/stylesheets/screen.css public/stylesheets/#{project_name}.css") |
66 | +run("sudo chmod 0666 public/stylesheets/#{project_name}.css") | |
66 | 67 | |
67 | 68 | run("git commit -a -m 'New Heroku Suspenders app'") |
68 | 69 | ... | ... |