mirror of
https://github.com/schollz/croc.git
synced 2025-10-11 13:21:00 +02:00
Removed redunant else statement
This commit is contained in:
parent
60cb509ff9
commit
81312a6647
1 changed files with 15 additions and 16 deletions
31
connect.go
31
connect.go
|
@ -422,24 +422,23 @@ func (c *Connection) runClient() error {
|
||||||
|
|
||||||
if c.File.Hash != fileHash {
|
if c.File.Hash != fileHash {
|
||||||
return fmt.Errorf("\nUh oh! %s is corrupted! Sorry, try again.\n", c.File.Name)
|
return fmt.Errorf("\nUh oh! %s is corrupted! Sorry, try again.\n", c.File.Name)
|
||||||
} else {
|
}
|
||||||
if c.File.IsDir { // if the file was originally a dir
|
if c.File.IsDir { // if the file was originally a dir
|
||||||
fmt.Print("decompressing folder")
|
fmt.Print("decompressing folder")
|
||||||
log.Debug("untarring " + c.File.Name)
|
log.Debug("untarring " + c.File.Name)
|
||||||
err := tarinator.UnTarinate(c.Path, path.Join(c.Path, c.File.Name))
|
err := tarinator.UnTarinate(c.Path, path.Join(c.Path, c.File.Name))
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
|
||||||
// we remove the old tar.gz file
|
|
||||||
err = os.Remove(path.Join(c.Path, c.File.Name))
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
fmt.Printf("\nReceived folder written to %s\n", path.Join(c.Path, c.File.Name[:len(c.File.Name)-4]))
|
|
||||||
} else {
|
|
||||||
fmt.Printf("\nReceived file written to %s\n", path.Join(c.Path, c.File.Name))
|
|
||||||
}
|
}
|
||||||
|
// we remove the old tar.gz file
|
||||||
|
err = os.Remove(path.Join(c.Path, c.File.Name))
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
fmt.Printf("\nReceived folder written to %s\n", path.Join(c.Path, c.File.Name[:len(c.File.Name)-4]))
|
||||||
|
} else {
|
||||||
|
fmt.Printf("\nReceived file written to %s\n", path.Join(c.Path, c.File.Name))
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue