deps-try
deps-try copied to clipboard
deps-try startup fails on Windows, if the $HOME directory contains a space
The full home directory is "C:\Users\Tobias Dummschat", but it tries finding the file "C:\Users\Tobias".

@tdutrifork my hunch is that ~/.babashka/bbin/bin/deps-try (or Windows equivalent) contains a path with the whitespace that's causing this, probably (def script-root "C:\Users\Tobias Dummschat\more\here".
Try to escape that whitespace, like so(?) (def script-root "\"C:\Users\Tobias Dummschat\more\here\"").