1
0
Fork 0
mirror of https://github.com/shimataro/ssh-key-action.git synced 2025-06-19 22:52:10 +10:00

* append LF to config and known_hosts

This commit is contained in:
shimataro 2019-12-29 18:50:56 +09:00
parent 4527acfc4c
commit c3e3b2e33f
No known key found for this signature in database
GPG key ID: BE92C05736911A9D
3 changed files with 5 additions and 5 deletions

View file

@ -33,7 +33,7 @@ function main() {
},
{
name: "known_hosts",
contents: core.getInput("known-hosts"),
contents: core.getInput("known-hosts") + "\n",
options: {
mode: 0o644,
flag: "a",
@ -41,7 +41,7 @@ function main() {
},
{
name: "config",
contents: core.getInput("config"),
contents: core.getInput("config") + "\n",
options: {
mode: 0o644,
flag: "a",