mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
tool: fix vgit.v
This commit is contained in:
parent
890940292b
commit
3c6a4dedd6
@ -74,8 +74,6 @@ pub fn clone_or_pull( remote_git_url string, local_worktree_path string ) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
|
||||||
|
|
||||||
pub struct VGitContext {
|
pub struct VGitContext {
|
||||||
pub:
|
pub:
|
||||||
cc string = 'cc' // what compiler to use
|
cc string = 'cc' // what compiler to use
|
||||||
@ -140,10 +138,10 @@ pub fn add_common_tool_options<T>(context mut T, fp mut flag.FlagParser) []strin
|
|||||||
context.workdir = os.real_path(fp.string('workdir', `w`, tdir, 'A writable base folder. Default: $tdir'))
|
context.workdir = os.real_path(fp.string('workdir', `w`, tdir, 'A writable base folder. Default: $tdir'))
|
||||||
context.v_repo_url = fp.string('vrepo', 0, vgit.remote_v_repo_url, 'The url of the V repository. You can clone it locally too. See also --vcrepo below.')
|
context.v_repo_url = fp.string('vrepo', 0, vgit.remote_v_repo_url, 'The url of the V repository. You can clone it locally too. See also --vcrepo below.')
|
||||||
context.vc_repo_url = fp.string('vcrepo', 0, vgit.remote_vc_repo_url, 'The url of the vc repository. You can clone it
|
context.vc_repo_url = fp.string('vcrepo', 0, vgit.remote_vc_repo_url, 'The url of the vc repository. You can clone it
|
||||||
${flag.SPACE}beforehand, and then just give the local folder
|
${flag.space}beforehand, and then just give the local folder
|
||||||
${flag.SPACE}path here. That will eliminate the network ops
|
${flag.space}path here. That will eliminate the network ops
|
||||||
${flag.SPACE}done by this tool, which is useful, if you want
|
${flag.space}done by this tool, which is useful, if you want
|
||||||
${flag.SPACE}to script it/run it in a restrictive vps/docker.
|
${flag.space}to script it/run it in a restrictive vps/docker.
|
||||||
')
|
')
|
||||||
context.show_help = fp.bool('help', `h`, false, 'Show this help screen.')
|
context.show_help = fp.bool('help', `h`, false, 'Show this help screen.')
|
||||||
context.verbose = fp.bool('verbose', `v`, false, 'Be more verbose.')
|
context.verbose = fp.bool('verbose', `v`, false, 'Be more verbose.')
|
||||||
|
Loading…
Reference in New Issue
Block a user