Compare commits

...

2 Commits

Author SHA1 Message Date
Dorian Zedler d964a5c94c
Merge branch 'main' of itsblue.dev:plugins/codeberg-pages-deploy
continuous-integration/drone/push Build is passing Details
2022-07-23 20:45:29 +02:00
Dorian Zedler 4e06dae847
Fix: missing newline 2022-07-23 20:44:55 +02:00
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ func Exec(ctx context.Context, args Args) error {
return err
}
if err := repo.WriteKey(strings.ReplaceAll(args.SshKey, "\\n", "\n")); err != nil {
if err := repo.WriteKey(strings.ReplaceAll(args.SshKey, "\\n", "\n") + "\n"); err != nil {
return err
}