medvednikov

/

gitlyxPublic
0 commits27 issues3 pull requests32 contributorsDiscussionsProjectsCI

markdown and pcre deps #1

Openmcgruwants to mergepr/286intomaster· last Mar 20
2 files changed+6-1
build.vsh+5-0

@@ -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')

v.mod+1-1

@@ -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}