Skip to content
This repository has been archived by the owner on May 30, 2023. It is now read-only.

Commit

Permalink
Fix typo in yaml tag
Browse files Browse the repository at this point in the history
Signed-off-by: Fredrik Lönnegren <fredrik.lonnegren@suse.com>
  • Loading branch information
frelon committed Nov 3, 2022
1 parent ff106e5 commit 240965c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions pkg/types/v1/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,10 @@ import (
"path/filepath"
"sort"

"github.com/rancher/elemental-cli/pkg/constants"
"gopkg.in/yaml.v3"
"k8s.io/mount-utils"

"github.com/rancher/elemental-cli/pkg/constants"
)

const (
Expand Down Expand Up @@ -252,8 +253,8 @@ type Partition struct {
Name string
FilesystemLabel string `yaml:"label,omitempty" mapstructure:"label"`
Size uint `yaml:"size,omitempty" mapstructure:"size"`
FS string `yaml:"fs,omitempty" mapstrcuture:"fs"`
Flags []string `yaml:"flags,omitempty" mapstrcuture:"flags"`
FS string `yaml:"fs,omitempty" mapstructure:"fs"`
Flags []string `yaml:"flags,omitempty" mapstructure:"flags"`
MountPoint string
Path string
Disk string
Expand Down

0 comments on commit 240965c

Please sign in to comment.