aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorlawl <github@dumbinter.net>2020-07-05 16:49:59 +0200
committerlawl <github@dumbinter.net>2020-07-05 16:49:59 +0200
commit5d28c929310beaa39763336459473be5c4b7c324 (patch)
tree0b6dd91c53d32481350a3d86966eff256f3f1310 /scripts
parent71223d4b2fc45c0708966819ba38e3a54563f2ad (diff)
downloadnoisetorch-5d28c929310beaa39763336459473be5c4b7c324.tar.gz
noisetorch-5d28c929310beaa39763336459473be5c4b7c324.zip
Clarify error message on missing librnnoise
Diffstat (limited to 'scripts')
-rw-r--r--scripts/embedlibrnnoise.go3
1 files changed, 2 insertions, 1 deletions
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")