File tree Expand file tree Collapse file tree 5 files changed +6
-4
lines changed
Expand file tree Collapse file tree 5 files changed +6
-4
lines changed Original file line number Diff line number Diff 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 {
Original file line number Diff line number Diff line change @@ -50,6 +50,7 @@ func main() {
5050 fmt .Printf ("subfolders: %v\n subfiles: %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 {
Original file line number Diff line number Diff line change 11module github.com/dendrascience/dendra-archive-fuse
22
3- go 1.21.1
3+ go 1.24.0
44
55require (
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
1110require golang.org/x/sys v0.12.0 // indirect
Original file line number Diff line number Diff line change @@ -4,7 +4,5 @@ github.com/taigrr/colorhash v0.5.0 h1:uegDW7DMAO+dMAHNx97AcLwnxXpyF7DleTxNw9WNdz
44github.com/taigrr/colorhash v0.5.0 /go.mod h1:KwtFHUr9v4kc2La3fpOhQ2/nU0zdb+GCbwqR/e+d7jg =
55github.com/tv42/httpunix v0.0.0-20191220191345-2ba4b9c3382c h1:u6SKchux2yDvFQnDHS3lPnIRmfVJ5Sxy3ao2SIdysLQ =
66github.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 =
97golang.org/x/sys v0.12.0 h1:CM0HF96J0hcLAwsHPJZjfdNzs0gftsLfgKt57wWHJ0o =
108golang.org/x/sys v0.12.0 /go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg =
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments