Fix android package

This commit is contained in:
世界 2022-12-11 14:38:01 +08:00
parent 81e7b0b320
commit 80ed5bf8fb
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
4 changed files with 152 additions and 6 deletions

View file

@ -0,0 +1,20 @@
package main
import (
"os"
"os/exec"
"github.com/sagernet/sing-box/log"
)
func main() {
findSDK()
command := exec.Command(os.Args[1], os.Args[2:]...)
command.Stdout = os.Stdout
command.Stderr = os.Stderr
err := command.Run()
if err != nil {
log.Fatal(err)
}
}