1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

tools: fix vls error unexpected token U in JSON (#17709)

This commit is contained in:
DJ-Dav 2023-03-20 12:40:52 +00:00 committed by GitHub
parent 17fe76368a
commit e7996a0792
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -433,7 +433,7 @@ fn (upd VlsUpdater) check_installation() {
if upd.ls_path.len == 0 {
upd.log('Language server is not installed')
} else {
upd.log('Language server is installed at: ${upd.ls_path}')
upd.log('Language server is installed at: ${upd.ls_path}'.split(r'\').join(r'\\'))
}
}