deps-try icon indicating copy to clipboard operation
deps-try copied to clipboard

deps-try startup fails on Windows, if the $HOME directory contains a space

Open tdutrifork opened this issue 2 years ago • 1 comments

The full home directory is "C:\Users\Tobias Dummschat", but it tries finding the file "C:\Users\Tobias".

image

tdutrifork avatar Mar 21 '23 17:03 tdutrifork

@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\"").

eval avatar Mar 21 '23 22:03 eval