Updated README
This commit is contained in:
@@ -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)
|
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
|
# Ideas
|
||||||
* Link directly to squashfs-tool using cgo
|
* Link directly to squashfs-tool using cgo
|
||||||
* cgo can be a butt
|
* cgo can be a butt
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
package squashfs
|
package squashfs
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"fmt"
|
||||||
"io"
|
"io"
|
||||||
"net/http"
|
"net/http"
|
||||||
"os"
|
"os"
|
||||||
@@ -34,6 +35,7 @@ func TestAppImageSquash(t *testing.T) {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
t.Error(err)
|
t.Error(err)
|
||||||
}
|
}
|
||||||
|
fmt.Println(squash.GetFlags())
|
||||||
t.Fatal("Testing")
|
t.Fatal("Testing")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user