mirror of
https://github.com/goharbor/harbor.git
synced 2025-02-15 03:11:50 +01:00
trim new line in the end of token file
This commit is contained in:
parent
7573d59624
commit
f57b9ae9d5
@ -16,6 +16,7 @@ package pms
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
|
"strings"
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
@ -49,5 +50,5 @@ func (f *FileTokenReader) ReadToken() (string, error) {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return "", err
|
return "", err
|
||||||
}
|
}
|
||||||
return string(data), nil
|
return strings.TrimRight(string(data), "\n"), nil
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user