babashka-sci-dev

borkdude 2022-09-28T09:35:31.017069Z

I think we could just add an option to https://github.com/borkdude/gh-release-artifact to also upload a .sha256 file along with the uploaded file automatically

borkdude 2022-09-28T09:35:49.877139Z

Then we just have to enable that in all the CIs and do the work only once

borkdude 2022-09-28T09:36:06.034779Z

It has to be implemented in bb itself (so in that library) in order to be cross platform

lispyclouds 2022-09-28T11:31:05.099839Z

@borkdude how about adding a bit more info https://github.com/babashka/babashka/blob/master/src/babashka/main.clj#L1052 ? got bit by the bit cryptic stack trace only to realise my bb.edn was empty 😅 something like (throw (Exception. (str "Error loading bb.edn: " (.getMessage e)))) can raise a PR now.

borkdude 2022-09-28T13:01:31.050029Z

Sure

borkdude 2022-09-28T13:01:48.545069Z

I would say print the message before throwing, don't swallow the original exception

lispyclouds 2022-09-28T13:06:03.032489Z

makes sense!