@@ -9,6 +9,11 @@ if !exists(path) {
99 }
1010}
1111
12+rc_deps := system('v install')
13+if rc_deps != 0 {
14+ panic('Some error during dependencies install/update (rc: ${rc_deps})')
15+}
16+
1217ret := system('v .')
1318if ret == 0 {
1419 println('Gitly has been successfully built, run it with ./gitly')
@@ -3,5 +3,5 @@ Module {
33 description: 'A self-hosted Git service, written in V'
44 version: '0.1.1'
55 license: 'GPL 3'
6- dependencies: []
6+ dependencies: [ 'markdown', 'pcre' ]
77}