Swapped printf for echo since there's no more newline

master
Keith Irwin 2017-06-27 12:03:06 -04:00
parent be7c160cbf
commit 2fcb9e17c6
No known key found for this signature in database
GPG Key ID: 378933C743E2BBC0
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ A good method is to simply copy the sample configuration and point `config/env/e
```sh
cp config/env/sample.js config/env/local-config.js
printf "module.exports = require('./local-config.js');" > config/env/env.js
echo "module.exports = require('./local-config.js');" > config/env/env.js
```
Then edit `config/env/local-config.js` to match your local environment.