mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-26 20:26:13 +01:00
Merge pull request #2816 from ywk253100/170719_trim
Trim the new line in the end of token file
This commit is contained in:
commit
75c4d4a60a
@ -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