File tree 2 files changed +273
-267
lines changed
2 files changed +273
-267
lines changed Original file line number Diff line number Diff line change @@ -10,16 +10,19 @@ config = {
10
10
'languages' : {
11
11
'go' : {
12
12
'src' : "out-go" ,
13
+ 'clean-src' : "out-go/*" ,
13
14
'repo-slug' : "libre-graph-api-go" ,
14
15
'branch' : 'main' ,
15
16
},
16
17
'typescript-axios' : {
17
18
'src' : "out-typescript-axios" ,
19
+ 'src' : "out-typescript-axios/*" ,
18
20
'repo-slug' : "libre-graph-api-typescript-axios" ,
19
21
'branch' : 'main' ,
20
22
},
21
23
'cpp-qt-client' : {
22
24
'src' : "out-cpp-qt-client" ,
25
+ 'clean-src' : "out-cpp-qt-client/client/*" ,
23
26
'repo-slug' : "libre-graph-api-cpp-qt-client" ,
24
27
'branch' : 'main' ,
25
28
},
@@ -154,7 +157,7 @@ def generate(ctx, lang):
154
157
"name" : "clean-%s" % lang ,
155
158
"image" : "owncloudci/alpine:latest" ,
156
159
"commands" : [
157
- "rm -rf %s/* " % config ["languages" ][lang ]["src" ],
160
+ "rm -rf %s" % config ["languages" ][lang ]["clean- src" ],
158
161
],
159
162
},
160
163
{
You can’t perform that action at this time.
0 commit comments