Skip to content

Commit 0f1679a

Browse files
authored
Merge pull request #2 from DendraScience/feat/lang-upgrade-tidy
Feat/lang upgrade tidy
2 parents d06232b + 2c5f8f3 commit 0f1679a

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed

bin/main.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ func main() {
1212
log.Fatal(err)
1313
}
1414
_ = files
15+
// TODO: fix argument count mismatch, extra string
1516
for _, f := range files {
1617
err = util.ZipInside(f, "", false)
1718
if err != nil {

cmd/converter/main.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ func main() {
5050
fmt.Printf("subfolders: %v\nsubfiles: %v\n", subfolders, subfiles)
5151
_, _ = subfolders, subfiles
5252

53+
// TODO: fix amount of arguments, missing output input.
5354
for _, dir := range subfolders {
5455
err := util.CreateDJAFSArchive(dir, false)
5556
if err != nil {

go.mod

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
module github.com/dendrascience/dendra-archive-fuse
22

3-
go 1.21.1
3+
go 1.24.0
44

55
require (
66
bazil.org/fuse v0.0.0-20230120002735-62a210ff1fd5
77
github.com/taigrr/colorhash v0.5.0
8-
golang.org/x/net v0.15.0
98
)
109

1110
require golang.org/x/sys v0.12.0 // indirect

go.sum

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,5 @@ github.com/taigrr/colorhash v0.5.0 h1:uegDW7DMAO+dMAHNx97AcLwnxXpyF7DleTxNw9WNdz
44
github.com/taigrr/colorhash v0.5.0/go.mod h1:KwtFHUr9v4kc2La3fpOhQ2/nU0zdb+GCbwqR/e+d7jg=
55
github.com/tv42/httpunix v0.0.0-20191220191345-2ba4b9c3382c h1:u6SKchux2yDvFQnDHS3lPnIRmfVJ5Sxy3ao2SIdysLQ=
66
github.com/tv42/httpunix v0.0.0-20191220191345-2ba4b9c3382c/go.mod h1:hzIxponao9Kjc7aWznkXaL4U4TWaDSs8zcsY4Ka08nM=
7-
golang.org/x/net v0.15.0 h1:ugBLEUaxABaB5AJqW9enI0ACdci2RUd4eP51NTBvuJ8=
8-
golang.org/x/net v0.15.0/go.mod h1:idbUs1IY1+zTqbi8yxTbhexhEEk5ur9LInksu6HrEpk=
97
golang.org/x/sys v0.12.0 h1:CM0HF96J0hcLAwsHPJZjfdNzs0gftsLfgKt57wWHJ0o=
108
golang.org/x/sys v0.12.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=

util/repack_test.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,6 @@ func TestRepack(t *testing.T) {
1111
t.Error(GCWorkDirs())
1212
t.Fail()
1313
}
14+
15+
// TODO: finish writing test?
16+
//looks like this is where it was left off

0 commit comments

Comments
 (0)