Skip to content
Snippets Groups Projects
Commit 41c952a7 authored by David Trattnig's avatar David Trattnig
Browse files

Fix: template string

parent 5aa00ba7
No related branches found
No related tags found
1 merge request!3Liquidsoap 2 migration
......@@ -155,7 +155,7 @@ def get_output(source, device, name) =
output.pulseaudio(id=name, client="AuraEngine Line OUT", source)
end
else
output_name = "${name}_DUMMY"
output_name = "#{name}_DUMMY"
log("Using dummy output: " ^ output_name)
output.dummy(id=output_name, blank())
end
......
......@@ -100,7 +100,7 @@ use_jack = soundsystem == "jack"
version = process.read("cat ../VERSION")
print("**************************************************************************************")
print("AURA Engine:Core v" ^ version ^ " starting ...")
print("AURA Engine:Core v#{version} starting ...")
print("**************************************************************************************")
alsa_use_buffer = ref (true)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment