hi,my process use java_path like this :
~/java/bin/java
but at 1204~1205
if 'java_path' not in details: details['java_path'] = ''.join(liverun("which java")).strip().replace("/java", "")
set java_path to "~/bin"
try change to
details['java_path'] = ''.join(liverun("which java")).strip()[:-5]
that works well
hi,my process use java_path like this :
~/java/bin/java
but at 1204~1205
if 'java_path' not in details: details['java_path'] = ''.join(liverun("which java")).strip().replace("/java", "")set java_path to "~/bin"
try change to
details['java_path'] = ''.join(liverun("which java")).strip()[:-5]that works well