mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
fix pwd printout
This commit is contained in:
parent
00d3f01876
commit
a875f67a08
|
@ -22,11 +22,7 @@ func (c *commandFsPwd) Help() string {
|
|||
|
||||
func (c *commandFsPwd) Do(args []string, commandEnv *CommandEnv, writer io.Writer) (err error) {
|
||||
|
||||
fmt.Fprintf(writer, "http://%s:%d%s\n",
|
||||
commandEnv.option.FilerHost,
|
||||
commandEnv.option.FilerPort,
|
||||
commandEnv.option.Directory,
|
||||
)
|
||||
fmt.Fprintf(writer, "%s\n", commandEnv.option.Directory)
|
||||
|
||||
return nil
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue