From d33082dffe8356ea5be88bf11ee9eb0d754c4b1f Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Sun, 10 May 2020 18:41:25 +0300 Subject: [PATCH] oldv: fix compilation, make VGitOptions fields public --- cmd/tools/modules/vgit/vgit.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/tools/modules/vgit/vgit.v b/cmd/tools/modules/vgit/vgit.v index 48b80d3ed0..b4005ac2c7 100644 --- a/cmd/tools/modules/vgit/vgit.v +++ b/cmd/tools/modules/vgit/vgit.v @@ -134,7 +134,7 @@ pub fn (vgit_context mut VGitContext) compile_oldv_if_needed() { } pub struct VGitOptions { -mut: +pub mut: workdir string // the working folder (typically /tmp), where the tool will write v_repo_url string // the url of the V repository. It can be a local folder path, if you want to eliminate network operations... vc_repo_url string // the url of the vc repository. It can be a local folder path, if you want to eliminate network operations...