From 29400334c77006839db933e6ca2e670d138215c8 Mon Sep 17 00:00:00 2001 From: Caleb Gardner Date: Tue, 10 Nov 2020 05:59:17 -0600 Subject: [PATCH] Updated README --- README.md | 2 ++ squashfs_test.go | 2 ++ 2 files changed, 4 insertions(+) diff --git a/README.md b/README.md index 10185c9..1621c2c 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,8 @@ My playground to mess around with Squashfs in Go. Might turn into an actual libr Right Now it's mostly based on [distri's squashfs library](https://github.com/distr1/distri/tree/master/internal/squashfs) +Special thanks to https://dr-emann.github.io/squashfs/ for some VERY important information in an easy to understand format + # Ideas * Link directly to squashfs-tool using cgo * cgo can be a butt diff --git a/squashfs_test.go b/squashfs_test.go index ca4d9f3..98986fe 100644 --- a/squashfs_test.go +++ b/squashfs_test.go @@ -1,6 +1,7 @@ package squashfs import ( + "fmt" "io" "net/http" "os" @@ -34,6 +35,7 @@ func TestAppImageSquash(t *testing.T) { if err != nil { t.Error(err) } + fmt.Println(squash.GetFlags()) t.Fatal("Testing") }