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

vls: fix official repository source (#18561)

This commit is contained in:
werkzeug 2023-06-26 09:40:44 +02:00 committed by GitHub
parent dd24e8a63e
commit aacdd61e67
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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}')
}