update readme

This commit is contained in:
Zack Scholl 2018-06-26 21:43:29 -07:00
parent af92a47450
commit 2b8d8670bd
1 changed files with 2 additions and 1 deletions

View File

@ -775,6 +775,7 @@ func (c *Connection) runClient(serverName string) error {
} else {
log.Debugf("is encrypted: %+v", c.File.IsEncrypted)
if c.File.IsEncrypted {
fmt.Fprintf(os.Stderr, "\n")
c.spinner = spinner.New(spinner.CharSets[24], 100*time.Millisecond) // Build our new spinner
c.spinner.Suffix = " Decrypting file.."
c.spinner.Start()
@ -821,7 +822,7 @@ func (c *Connection) runClient(serverName string) error {
if err != nil {
return err
}
fmt.Fprintf(os.Stderr, "\nReceived folder written to '%s'", path.Join(c.Path, c.File.Name[:len(c.File.Name)-4]))
fmt.Fprintf(os.Stderr, "Received folder written to '%s'", path.Join(c.Path, c.File.Name[:len(c.File.Name)-4]))
} else {
outputStream := path.Join(c.Path, c.File.Name)
if c.UseStdout {