Skip to content

Commit

Permalink
vls: fix official repository source (#18561)
Browse files Browse the repository at this point in the history
  • Loading branch information
werkzeug committed Jun 26, 2023
1 parent dd24e8a commit aacdd61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/tools/vls.v
Expand Up @@ -249,7 +249,7 @@ fn (upd VlsUpdater) compile_from_source() ! {

if !os.exists(vls_src_folder) {
upd.log('Cloning VLS repo...')
clone_result := os.execute('${git} clone https://github.com/nedpals/vls ${vls_src_folder}')
clone_result := os.execute('${git} clone https://github.com/vlang/vls ${vls_src_folder}')
if clone_result.exit_code != 0 {
return error('Failed to build VLS from source. Reason: ${clone_result.output}')
}
Expand Down

0 comments on commit aacdd61

Please sign in to comment.