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

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

This commit is contained in:
Delyan Angelov 2020-08-28 21:49:12 +03:00
parent 7dbae14e19
commit 02bece54a6

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')
} else {
// pull latest
app.git_command('pull origin master')
app.git_command('pull https://github.com/vlang/v master')
}
}