Skip to content

Commit

Permalink
Don't overwrite the .env.sample file if it exists
Browse files Browse the repository at this point in the history
Previously when you run install it overwrites the file that's already there. If I install this into an app directory that already has a .env.sample I lose all the sample env vars for that app.
  • Loading branch information
Jordan Babe committed Apr 10, 2013
1 parent 6db8cec commit c5f3f4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install.sh
Expand Up @@ -34,7 +34,7 @@

# Downoad support files

curl -s -L https://raw.github.com/mm53bar/pave/master/.env.sample -o .env.sample
curl -s -L https://raw.github.com/mm53bar/pave/master/.env.sample >> .env.sample

# Set the permissions for the scripts

Expand Down

0 comments on commit c5f3f4e

Please sign in to comment.