mirror of
https://github.com/livekit/livekit.git
synced 2026-08-28 07:14:12 +00:00
Fix buildLinux mage command
This commit is contained in:
+1
-1
@@ -78,7 +78,7 @@ func BuildLinux() error {
|
||||
if err := os.MkdirAll("bin", 0755); err != nil {
|
||||
return err
|
||||
}
|
||||
cmd := exec.Command("go", "build", "-o", "../../bin/livekit-server-amd64")
|
||||
cmd := exec.Command("go", "build", "-buildvcs=false", "-o", "../../bin/livekit-server-amd64")
|
||||
cmd.Env = []string{
|
||||
"GOOS=linux",
|
||||
"GOARCH=amd64",
|
||||
|
||||
Reference in New Issue
Block a user