From 5d28c929310beaa39763336459473be5c4b7c324 Mon Sep 17 00:00:00 2001 From: lawl Date: Sun, 5 Jul 2020 16:49:59 +0200 Subject: [PATCH] Clarify error message on missing librnnoise --- scripts/embedlibrnnoise.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/embedlibrnnoise.go b/scripts/embedlibrnnoise.go index c98ed19..63d93b5 100644 --- a/scripts/embedlibrnnoise.go +++ b/scripts/embedlibrnnoise.go @@ -12,7 +12,8 @@ func main() { if err != nil { fmt.Printf("Couldn't read librnnoise_ladspa.so: %v\n", err) fmt.Println("Drop a compiled librnnoise_ladspa.so in at librnnoise_ladspa/librnnoise_ladspa.so,\n" + - "it will is required for compilation so we can embed it.") + "it will is required for compilation so we can embed it.\n\n" + + "You can find out more information in the README in that folder\n\n") os.Exit(1) } out, _ := os.Create("librnnoise.go")