undo echo

This commit is contained in:
wiktor 2022-05-22 00:58:41 +02:00
parent 687bb6bdf1
commit ee305d2804
1 changed files with 1 additions and 1 deletions

View File

@ -131,5 +131,5 @@ post '/api/1/print/:id' do
temp = Tempfile.new('labelmaker')
temp.write(render_label(params["id"]))
temp.close
system("echo lpr -P DYMO_LabelWriter_450 #{temp.path}")
system("lpr -P DYMO_LabelWriter_450 #{temp.path}")
end