mirror of
https://github.com/octoleo/restic.git
synced 2024-11-02 11:46:36 +00:00
options: Handle uint
This commit is contained in:
parent
539674614b
commit
88a59fd0ca
@ -192,6 +192,14 @@ func (o Options) Apply(ns string, dst interface{}) error {
|
||||
|
||||
v.Field(i).SetInt(vi)
|
||||
|
||||
case "uint":
|
||||
vi, err := strconv.ParseUint(value, 0, 32)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
v.Field(i).SetUint(vi)
|
||||
|
||||
case "Duration":
|
||||
d, err := time.ParseDuration(value)
|
||||
if err != nil {
|
||||
|
Loading…
Reference in New Issue
Block a user