边缘节点远程安装文件最小化(从16.xM减少到2.xM)

This commit is contained in:
GoEdgeLab
2022-09-30 10:34:32 +08:00
parent 5c9146262a
commit 052f0e71f0
5 changed files with 114 additions and 4 deletions

View File

@@ -0,0 +1,17 @@
package helpers_test
import (
"github.com/TeaOSLab/EdgeAPI/internal/installers/helpers"
"github.com/iwind/TeaGo/Tea"
_ "github.com/iwind/TeaGo/bootstrap"
"testing"
)
func TestUnzip_Run(t *testing.T) {
var unzip = helpers.NewUnzip(Tea.Root+"/deploy/edge-node-v0.0.1.zip", Tea.Root+"/deploy/")
err := unzip.Run()
if err != nil {
t.Fatal(err)
}
t.Log("OK")
}