Commit db62803f0e60a4e474cf39d64cff76741b805e0b
1 parent
115f27ae
Exists in
master
and in
29 other branches
quick-start: ignore failure when creating .gitignore
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
script/quick-start
... | ... | @@ -109,7 +109,7 @@ run 'rake noosfero:translations:compile >/dev/null 2>&1' |
109 | 109 | mkdir -p tmp/pids |
110 | 110 | |
111 | 111 | # use default gitignore rules |
112 | -ln -s gitignore.example .gitignore | |
112 | +ln -s gitignore.example .gitignore || true | |
113 | 113 | |
114 | 114 | # you can now start the server |
115 | 115 | say "I: Congratulations, you are ready to run Noosfero." | ... | ... |