vup: use `git pull https://github.com/vlang/v master` for updating

pull/6248/head
Delyan Angelov 2020-08-28 21:49:12 +03:00
parent 7dbae14e19
commit 02bece54a6
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ fn (app App) update_from_master() {
app.git_command('clean --quiet -xdf --exclude v.exe --exclude cmd/tools/vup.exe') app.git_command('clean --quiet -xdf --exclude v.exe --exclude cmd/tools/vup.exe')
} else { } else {
// pull latest // pull latest
app.git_command('pull origin master') app.git_command('pull https://github.com/vlang/v master')
} }
} }