Skip to content

Commit 7540b4f

Browse files
committed
♻️ Synced dbin 📦 <-- Merge branch 'master' of https://github.com/xplshn/dbin
1 parent 161fc0e commit 7540b4f

File tree

4 files changed

+43
-31
lines changed

4 files changed

+43
-31
lines changed

go.mod

+6-6
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,20 @@ go 1.23.2
55
require (
66
github.com/fxamacker/cbor/v2 v2.7.0
77
github.com/goccy/go-json v0.10.5
8-
github.com/goccy/go-yaml v1.15.23
9-
github.com/hedzr/progressbar v1.2.1
8+
github.com/goccy/go-yaml v1.16.0
9+
github.com/hedzr/progressbar v1.2.5
1010
github.com/klauspost/compress v1.18.0
1111
github.com/pkg/xattr v0.4.10
1212
github.com/tdewolff/minify/v2 v2.21.3
1313
github.com/urfave/cli/v3 v3.0.0-beta1
1414
github.com/zeebo/blake3 v0.2.4
15-
golang.org/x/term v0.29.0
15+
golang.org/x/term v0.30.0
1616
)
1717

1818
require (
19-
github.com/klauspost/cpuid/v2 v2.2.9 // indirect
19+
github.com/klauspost/cpuid/v2 v2.2.10 // indirect
2020
github.com/tdewolff/parse/v2 v2.7.20 // indirect
2121
github.com/x448/float16 v0.8.4 // indirect
22-
golang.org/x/net v0.35.0 // indirect
23-
golang.org/x/sys v0.30.0 // indirect
22+
golang.org/x/net v0.37.0 // indirect
23+
golang.org/x/sys v0.31.0 // indirect
2424
)

go.sum

+12
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,18 @@ github.com/goccy/go-json v0.10.5 h1:Fq85nIqj+gXn/S5ahsiTlK3TmC85qgirsdTP/+DeaC4=
66
github.com/goccy/go-json v0.10.5/go.mod h1:oq7eo15ShAhp70Anwd5lgX2pLfOS3QCiwU/PULtXL6M=
77
github.com/goccy/go-yaml v1.15.23 h1:WS0GAX1uNPDLUvLkNU2vXq6oTnsmfVFocjQ/4qA48qo=
88
github.com/goccy/go-yaml v1.15.23/go.mod h1:XBurs7gK8ATbW4ZPGKgcbrY1Br56PdM69F7LkFRi1kA=
9+
github.com/goccy/go-yaml v1.16.0 h1:d7m1G7A0t+logajVtklHfDYJs2Et9g3gHwdBNNFou0w=
10+
github.com/goccy/go-yaml v1.16.0/go.mod h1:XBurs7gK8ATbW4ZPGKgcbrY1Br56PdM69F7LkFRi1kA=
911
github.com/hedzr/progressbar v1.2.1 h1:qKuBxiy11abGRVYkjlBqFDbF1eQw8Ep+DhUocWQ5sJ4=
1012
github.com/hedzr/progressbar v1.2.1/go.mod h1:riyH9fpOdIDCX5uYvCINnQ1k4+EBueOgT1vJYtLvHRg=
13+
github.com/hedzr/progressbar v1.2.5 h1:bFZRn8l24HMtjF9+zGh8UGAU25jRdQyNgRX+KAgf1qk=
14+
github.com/hedzr/progressbar v1.2.5/go.mod h1:JF3k3RCYR0X0nThFxsKqbPOezDmgufo99+v5TyrmKw0=
1115
github.com/klauspost/compress v1.18.0 h1:c/Cqfb0r+Yi+JtIEq73FWXVkRonBlf0CRNYc8Zttxdo=
1216
github.com/klauspost/compress v1.18.0/go.mod h1:2Pp+KzxcywXVXMr50+X0Q/Lsb43OQHYWRCY2AiWywWQ=
1317
github.com/klauspost/cpuid/v2 v2.2.9 h1:66ze0taIn2H33fBvCkXuv9BmCwDfafmiIVpKV9kKGuY=
1418
github.com/klauspost/cpuid/v2 v2.2.9/go.mod h1:rqkxqrZ1EhYM9G+hXH7YdowN5R5RGN6NK4QwQ3WMXF8=
19+
github.com/klauspost/cpuid/v2 v2.2.10 h1:tBs3QSyvjDyFTq3uoc/9xFpCuOsJQFNPiAhYdw2skhE=
20+
github.com/klauspost/cpuid/v2 v2.2.10/go.mod h1:hqwkgyIinND0mEev00jJYCxPNVRVXFQeu1XKlok6oO0=
1521
github.com/pkg/xattr v0.4.10 h1:Qe0mtiNFHQZ296vRgUjRCoPHPqH7VdTOrZx3g0T+pGA=
1622
github.com/pkg/xattr v0.4.10/go.mod h1:di8WF84zAKk8jzR1UBTEWh9AUlIZZ7M/JNt8e9B6ktU=
1723
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
@@ -39,10 +45,16 @@ github.com/zeebo/pcg v1.0.1 h1:lyqfGeWiv4ahac6ttHs+I5hwtH/+1mrhlCtVNQM2kHo=
3945
github.com/zeebo/pcg v1.0.1/go.mod h1:09F0S9iiKrwn9rlI5yjLkmrug154/YRW6KnnXVDM/l4=
4046
golang.org/x/net v0.35.0 h1:T5GQRQb2y08kTAByq9L4/bz8cipCdA8FbRTXewonqY8=
4147
golang.org/x/net v0.35.0/go.mod h1:EglIi67kWsHKlRzzVMUD93VMSWGFOMSZgxFjparz1Qk=
48+
golang.org/x/net v0.37.0 h1:1zLorHbz+LYj7MQlSf1+2tPIIgibq2eL5xkrGk6f+2c=
49+
golang.org/x/net v0.37.0/go.mod h1:ivrbrMbzFq5J41QOQh0siUuly180yBYtLp+CKbEaFx8=
4250
golang.org/x/sys v0.0.0-20220408201424-a24fb2fb8a0f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
4351
golang.org/x/sys v0.30.0 h1:QjkSwP/36a20jFYWkSue1YwXzLmsV5Gfq7Eiy72C1uc=
4452
golang.org/x/sys v0.30.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
53+
golang.org/x/sys v0.31.0 h1:ioabZlmFYtWhL+TRYpcnNlLwhyxaM9kWTDEmfnprqik=
54+
golang.org/x/sys v0.31.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k=
4555
golang.org/x/term v0.29.0 h1:L6pJp37ocefwRRtYPKSWOWzOtWSxVajvz2ldH/xi3iU=
4656
golang.org/x/term v0.29.0/go.mod h1:6bl4lRlvVuDgSf3179VpIxBF0o10JUpXWOnI7nErv7s=
57+
golang.org/x/term v0.30.0 h1:PQ39fJZ+mfadBm0y5WlL4vlM7Sx1Hgf13sMIY2+QS9Y=
58+
golang.org/x/term v0.30.0/go.mod h1:NYYFdzHoI5wRh/h5tDMdMqCqPJZEuNqVR5xJLd/n67g=
4759
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
4860
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=

info.go

+16-18
Original file line numberDiff line numberDiff line change
@@ -17,27 +17,10 @@ func infoCommand() *cli.Command {
1717
if err != nil {
1818
return err
1919
}
20-
uRepoIndex := fetchRepoIndex(config)
2120
var bEntry binaryEntry
2221
if c.Args().First() != "" {
22+
uRepoIndex := fetchRepoIndex(config)
2323
bEntry = stringToBinaryEntry(c.Args().First())
24-
}
25-
if bEntry.Name == "" {
26-
files, err := listFilesInDir(config.InstallDir)
27-
if err != nil {
28-
return err
29-
}
30-
installedPrograms := make([]string, 0)
31-
for _, file := range files {
32-
trackedBEntry := bEntryOfinstalledBinary(file)
33-
if trackedBEntry.Name != "" {
34-
installedPrograms = append(installedPrograms, parseBinaryEntry(trackedBEntry, true))
35-
}
36-
}
37-
for _, program := range installedPrograms {
38-
fmt.Println(program)
39-
}
40-
} else {
4124
binaryInfo, err := getBinaryInfo(config, bEntry, uRepoIndex)
4225
if err != nil {
4326
return err
@@ -81,6 +64,21 @@ func infoCommand() *cli.Command {
8164
}
8265
}
8366
}
67+
} else {
68+
files, err := listFilesInDir(config.InstallDir)
69+
if err != nil {
70+
return err
71+
}
72+
installedPrograms := make([]string, 0)
73+
for _, file := range files {
74+
trackedBEntry := bEntryOfinstalledBinary(file)
75+
if trackedBEntry.Name != "" {
76+
installedPrograms = append(installedPrograms, parseBinaryEntry(trackedBEntry, true))
77+
}
78+
}
79+
for _, program := range installedPrograms {
80+
fmt.Println(program)
81+
}
8482
}
8583
return nil
8684
},

install.go

+9-7
Original file line numberDiff line numberDiff line change
@@ -92,24 +92,26 @@ func installBinaries(ctx context.Context, config *Config, bEntries []binaryEntry
9292
defer wg.Done()
9393
_, fetchErr := fetchBinaryFromURLToDest(ctx, bar, url, checksum, destination)
9494
if fetchErr != nil {
95-
errors = append(errors, fmt.Sprintf("error: error fetching binary %s: %v", bEntry.Name, fetchErr))
95+
errors = append(errors, fmt.Sprintf("error: error fetching binary %s: %v\n", bEntry.Name, fetchErr))
9696
return
9797
}
9898

9999
if err := os.Chmod(destination, 0755); err != nil {
100-
errors = append(errors, fmt.Sprintf("error: error making binary executable %s: %v", destination, err))
100+
errors = append(errors, fmt.Sprintf("error: error making binary executable %s: %v\n", destination, err))
101101
return
102102
}
103103

104104
if err := runIntegrationHooks(config, destination, verbosityLevel, uRepoIndex); err != nil {
105-
errors = append(errors, fmt.Sprintf("error: [%s] could not be handled by its default hooks: %v", bEntry.Name, err))
105+
errors = append(errors, fmt.Sprintf("error: [%s] could not be handled by its default hooks: %v\n", bEntry.Name, err))
106106
return
107107
}
108108

109-
binInfo, _ := getBinaryInfo(config, bEntry, uRepoIndex)
110-
if err := embedBEntry(destination, *binInfo); err != nil {
111-
errors = append(errors, fmt.Sprintf("error: failed to add fullName property to the binary's xattr %s: %v", destination, err))
112-
return
109+
binInfo, err := getBinaryInfo(config, bEntry, uRepoIndex)
110+
if err == nil {
111+
if err := embedBEntry(destination, *binInfo); err != nil {
112+
errors = append(errors, fmt.Sprintf("error: failed to add fullName property to the binary's xattr %s: %v\n", destination, err))
113+
return
114+
}
113115
}
114116
}),
115117
)

0 commit comments

Comments
 (0)