Re-wrote metadata reader. Seems to work now.

Need to work on test now.
This commit is contained in:
Caleb Gardner
2022-06-18 14:31:17 -05:00
parent 96b38935a6
commit 49595de3f2
5 changed files with 38 additions and 69 deletions
+2 -1
View File
@@ -3,6 +3,7 @@ package squashfs_test
//Actually proper tests go here.
import (
"fmt"
"io"
"io/fs"
"net/http"
@@ -89,7 +90,7 @@ func TestExtractQuick(t *testing.T) {
squashFils := os.DirFS(unsquashPath)
err = fs.WalkDir(squashFils, "", func(path string, d fs.DirEntry, err error) error {
t.Log(path)
fmt.Println(path)
return nil
})
if err != nil {