clean up temporary files
All checks were successful
Gitea Actions Demo / lint (push) Successful in 23s
Gitea Actions Demo / test (push) Successful in 13s
Gitea Actions Demo / release-image (push) Successful in 1m44s

This commit is contained in:
Ryan Cavicchioni 2025-03-11 00:49:19 -05:00
parent e72f4fb8fd
commit 9a19b6bae0
Signed by: ryanc
SSH Key Fingerprint: SHA256:KbXiwUnZnHFwFtt3Bytd+F3FN9pPHn1Z1cxMIE1TPbg

3
app.rb
View File

@ -530,5 +530,8 @@ get "/kitty" do
out << f.read(CHUNK_SIZE)
end
end
ensure
f.close
f.unlink
end
end