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:
parent
4527acfc4c
commit
c3e3b2e33f
3 changed files with 5 additions and 5 deletions
|
@ -35,7 +35,7 @@ function main(): void
|
|||
},
|
||||
{
|
||||
name: "known_hosts",
|
||||
contents: core.getInput("known-hosts"),
|
||||
contents: core.getInput("known-hosts") + "\n",
|
||||
options: {
|
||||
mode: 0o644,
|
||||
flag: "a",
|
||||
|
@ -43,7 +43,7 @@ function main(): void
|
|||
},
|
||||
{
|
||||
name: "config",
|
||||
contents: core.getInput("config"),
|
||||
contents: core.getInput("config") + "\n",
|
||||
options: {
|
||||
mode: 0o644,
|
||||
flag: "a",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue