2
2
mirror of https://github.com/Hilbis/Hilbish synced 2025-04-21 04:53:24 +00:00

fix(commands/greenhouse): remove extra space in title, set pipe page title to stdin

This commit is contained in:
sammyette 2023-10-25 00:00:59 -04:00
parent 8fabdf4502
commit d8a7a4332d
Signed by: sammyette
GPG Key ID: 904FC49417B44DCD

View File

@ -98,7 +98,7 @@ commander.register('greenhouse', function(args, sinks)
end)
if sinks['in'].pipe then
local page = Page('', sinks['in']:readAll())
local page = Page('stdin', sinks['in']:readAll())
gh:addPage(page)
end