ember-learn / ember-learn/ember-cli-addon-docs
[Travis CI] Missing new line at the end of deploy key
Aperta
- Lingua principale
- JavaScript
- Stelle
- 172
- Fork
- 142
- Metriche di merge delle PR
- Nessuna PR unita negli ultimi 30g
Descrizione
Hi 👋,
when setting up an automatic deployment using Travis CI, I've followed commands from documentation, but this command caused the Travis CI job to fail by asking me for `passphrase`
```
travis env set -- DEPLOY_KEY "$(cat deploy_key)"
```
The cause was in missing new line at the end, so I've used slightly updated command, which made the job to pass
```
travis env set -- DEPLOY_KEY "$(cat deploy_key)"$'\n'
```
I'm not sure if I did something wrong, or the docs should be updated, if this affects more people?
Guida per i contributori
Apri la guida per i contributori
Valutazione
Questa issue non è ancora stata valutata.