1
0
mirror of https://github.com/byReqz/go-etcher.git synced 2025-04-05 12:57:19 +00:00

Compare commits

...

3 Commits

Author SHA1 Message Date
Nils
d0f0957932
make linter happy 2022-12-29 23:01:03 +01:00
Nils
17bb76627f
add lint workflow 2022-12-29 19:24:23 +01:00
Nils
427c4fd990
fmt 2022-03-26 11:12:58 +01:00
2 changed files with 30 additions and 22 deletions

7
.github/workflows/lint.yml vendored Normal file
View File

@ -0,0 +1,7 @@
name: ci
on: [push]
jobs:
test:
uses: byReqz/workflows/.github/workflows/golint_with_codeql.yml@main

27
main.go
View File

@ -1,19 +1,20 @@
package main package main
import ( import (
"crypto/sha256"
"fmt" "fmt"
"os" ac "github.com/JoaoDanielRufino/go-input-autocomplete"
"github.com/briandowns/spinner"
"github.com/fatih/color"
"github.com/schollz/progressbar/v3"
flag "github.com/spf13/pflag"
"io" "io"
"time"
"log" "log"
"strings" "os"
"runtime" "runtime"
"strconv" "strconv"
"crypto/sha256" "strings"
"github.com/schollz/progressbar/v3" "time"
"github.com/fatih/color"
"github.com/briandowns/spinner"
flag "github.com/spf13/pflag"
ac "github.com/JoaoDanielRufino/go-input-autocomplete"
) )
var device string var device string
@ -179,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)
} }
@ -222,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!")
} }