allow \n in private-key envs

This commit is contained in:
2023-06-18 01:29:13 +02:00
parent 43d0107fb5
commit c05deb3a41
2 changed files with 8 additions and 2 deletions

View File

@@ -9,6 +9,7 @@ import (
"github.com/rs/zerolog/log"
"io"
"net/http"
"strings"
"time"
)
@@ -23,7 +24,9 @@ type AndroidPublisher struct {
func NewAndroidPublisherAPI(conf scn.Config) (AndroidPublisherClient, error) {
googauth, err := NewAuth(conf.GoogleAPITokenURI, conf.GoogleAPIPrivKeyID, conf.GoogleAPIClientMail, conf.GoogleAPIPrivateKey)
pkey := strings.ReplaceAll(conf.GoogleAPIPrivateKey, "\\n", "\n")
googauth, err := NewAuth(conf.GoogleAPITokenURI, conf.GoogleAPIPrivKeyID, conf.GoogleAPIClientMail, pkey)
if err != nil {
return nil, err
}