Commit 258ad13993ffa437dbcbc4951b4331100561d872

Authored by Rodrigo Souto
1 parent ea20a3dc

cache: create cache folder on quick-start

Showing 2 changed files with 2 additions and 0 deletions   Show diff stats
gitignore.example
... ... @@ -23,6 +23,7 @@ public/user_themes
23 23 public/designs/themes/default
24 24 public/designs/themes/*
25 25 public/designs/icons/default
  26 +cache
26 27  
27 28 public/assets
28 29 .sass-cache
... ...
script/quick-start
... ... @@ -130,6 +130,7 @@ fi
130 130 # create needed directory
131 131 mkdir -p tmp/pids
132 132 mkdir -p tmp/cache
  133 +mkdir cache
133 134  
134 135 # use default gitignore rules
135 136 if [ ! -f .gitignore ]; then
... ...