From 758eae248343b9053c17d2abbec8a409b03f1960 Mon Sep 17 00:00:00 2001 From: Ivan Grushin Date: Fri, 20 Mar 2026 11:06:28 +0700 Subject: [PATCH 1/2] Update v.mod not yet ready to PR --- v.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v.mod b/v.mod index 7eec3de8..3cd144c6 100644 --- a/v.mod +++ b/v.mod @@ -3,5 +3,5 @@ Module { description: 'A self-hosted Git service, written in V' version: '0.1.1' license: 'GPL 3' - dependencies: [] + dependencies: [ 'markdown', 'pcre' ] } From 298dbb155e7cdd1add0a6dc420a3dab347fd389f Mon Sep 17 00:00:00 2001 From: Ivan Grushin Date: Fri, 20 Mar 2026 11:27:00 +0700 Subject: [PATCH 2/2] Update build.vsh --- build.vsh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build.vsh b/build.vsh index 55fcf037..84a2736f 100644 --- a/build.vsh +++ b/build.vsh @@ -9,6 +9,11 @@ if !exists(path) { } } +rc_deps := system('v install') +if rc_deps != 0 { + panic('Some error during dependencies install/update (rc: ${rc_deps})') +} + ret := system('v .') if ret == 0 { println('Gitly has been successfully built, run it with ./gitly')