mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-06 05:17:38 +03:00
Fix buffer usage
This commit is contained in:
parent
6089c358c2
commit
f1b87be6e4
21 changed files with 121 additions and 24 deletions
|
@ -4,9 +4,6 @@ import (
|
|||
"archive/tar"
|
||||
_ "embed"
|
||||
"encoding/hex"
|
||||
"github.com/sagernet/sing"
|
||||
"github.com/sagernet/sing/common/log"
|
||||
"github.com/spf13/cobra"
|
||||
"io"
|
||||
"os"
|
||||
"os/exec"
|
||||
|
@ -15,17 +12,22 @@ import (
|
|||
"strings"
|
||||
|
||||
"github.com/klauspost/compress/zstd"
|
||||
"github.com/sagernet/sing"
|
||||
"github.com/sagernet/sing/common"
|
||||
E "github.com/sagernet/sing/common/exceptions"
|
||||
"github.com/sagernet/sing/common/log"
|
||||
"github.com/sirupsen/logrus"
|
||||
"github.com/spf13/cobra"
|
||||
"github.com/u-root/u-root/pkg/ldd"
|
||||
)
|
||||
|
||||
var logger = log.NewLogger("libpack")
|
||||
|
||||
var packageName string
|
||||
var executablePath string
|
||||
var outputPath string
|
||||
var (
|
||||
packageName string
|
||||
executablePath string
|
||||
outputPath string
|
||||
)
|
||||
|
||||
func main() {
|
||||
command := &cobra.Command{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue