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.
This commit is contained in:
Wim 2023-01-29 00:34:27 +01:00 committed by GitHub
parent 880586bac4
commit d23f2560d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,4 @@
//go:build cgo
// +build cgo
//go:build cgolottie
package helper

View File

@ -1,4 +1,4 @@
// +build !cgo
//go:build !cgolottie
package helper
@ -6,6 +6,7 @@ import (
"io/ioutil"
"os"
"os/exec"
"github.com/sirupsen/logrus"
)