diff options
Diffstat (limited to 'weed/shell/command_fs_ls.go')
| -rw-r--r-- | weed/shell/command_fs_ls.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/weed/shell/command_fs_ls.go b/weed/shell/command_fs_ls.go index 5c5130c53..6979635e1 100644 --- a/weed/shell/command_fs_ls.go +++ b/weed/shell/command_fs_ls.go @@ -13,7 +13,7 @@ import ( ) func init() { - commands = append(commands, &commandFsLs{}) + Commands = append(Commands, &commandFsLs{}) } type commandFsLs struct { @@ -35,7 +35,7 @@ func (c *commandFsLs) Help() string { ` } -func (c *commandFsLs) Do(args []string, commandEnv *commandEnv, writer io.Writer) (err error) { +func (c *commandFsLs) Do(args []string, commandEnv *CommandEnv, writer io.Writer) (err error) { var isLongFormat, showHidden bool for _, arg := range args { |
