Thumbnail

rani/matterbridge.git

Clone URL: https://git.buni.party/rani/matterbridge.git

commit e510cb81734431fa500f5e6aa41437375840578a Author: Wim <wim@42.be> Date: Sun Jan 29 00:34:27 2023 +0000 Make the cgo lottie a build tag (-tag cgolottie) (#1955) This should fix #1906 as we don't have any cgo dependencies anymore by default. diff --git a/bridge/helper/libtgsconverter.go b/bridge/helper/libtgsconverter.go index 7b2dffb..3069b34 100644 --- a/bridge/helper/libtgsconverter.go +++ b/bridge/helper/libtgsconverter.go @@ -15 +14 @@ -//go:build cgo -// +build cgo +//go:build cgolottie    package helper   diff --git a/bridge/helper/lottie_convert.go b/bridge/helper/lottie_convert.go index c6ae0a7..ffbe95d 100644 --- a/bridge/helper/lottie_convert.go +++ b/bridge/helper/lottie_convert.go @@ -14 +14 @@ -// +build !cgo +//go:build !cgolottie    package helper   @@ -66 +67 @@ import (   "io/ioutil"   "os"   "os/exec" +   "github.com/sirupsen/logrus"  )