mirror of
https://github.com/byReqz/go-etcher.git
synced 2024-11-23 07:14:55 +00:00
make linter happy
This commit is contained in:
parent
17bb76627f
commit
d0f0957932
8
main.go
8
main.go
@ -180,7 +180,7 @@ func main() {
|
|||||||
inputsize = statinput.Size()
|
inputsize = statinput.Size()
|
||||||
inputisblock = false
|
inputisblock = false
|
||||||
} else {
|
} else {
|
||||||
inputsize, err = image.Seek(0, io.SeekEnd)
|
inputsize, _ = image.Seek(0, io.SeekEnd)
|
||||||
inputisblock = true
|
inputisblock = true
|
||||||
_, _ = image.Seek(0, 0)
|
_, _ = image.Seek(0, 0)
|
||||||
}
|
}
|
||||||
@ -223,19 +223,19 @@ func main() {
|
|||||||
devicemb := fmt.Sprint("[", targetsize/1024/1024, "MB]")
|
devicemb := fmt.Sprint("[", targetsize/1024/1024, "MB]")
|
||||||
var inputblock string
|
var inputblock string
|
||||||
var targetblock string
|
var targetblock string
|
||||||
if inputisblock == true {
|
if inputisblock {
|
||||||
inputblock = "[Blockdevice]"
|
inputblock = "[Blockdevice]"
|
||||||
} else {
|
} else {
|
||||||
inputblock = "[File]"
|
inputblock = "[File]"
|
||||||
}
|
}
|
||||||
if targetisblock == true {
|
if targetisblock {
|
||||||
targetblock = "[Blockdevice]"
|
targetblock = "[Blockdevice]"
|
||||||
} else {
|
} else {
|
||||||
targetblock = "[File]"
|
targetblock = "[File]"
|
||||||
}
|
}
|
||||||
fmt.Println("[", color.BlueString("i"), "] Input device/file: "+input, inputmb, inputblock)
|
fmt.Println("[", color.BlueString("i"), "] Input device/file: "+input, inputmb, inputblock)
|
||||||
fmt.Println("[", color.BlueString("i"), "] Output device/file: "+device, devicemb, targetblock)
|
fmt.Println("[", color.BlueString("i"), "] Output device/file: "+device, devicemb, targetblock)
|
||||||
if force == false {
|
if !force {
|
||||||
if inputsize > targetsize {
|
if inputsize > targetsize {
|
||||||
fmt.Println("[", color.RedString("w"), "]", color.RedString(" Warning:"), "Input file seems to be bigger than the destination!")
|
fmt.Println("[", color.RedString("w"), "]", color.RedString(" Warning:"), "Input file seems to be bigger than the destination!")
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user