Skip to content

Commit

Permalink
Merge pull request #12 from owncloud/allof-workaround
Browse files Browse the repository at this point in the history
add workaround for composed types
  • Loading branch information
micbar committed Nov 26, 2021
2 parents 6fef878 + ef7349e commit a631330
Show file tree
Hide file tree
Showing 2 changed files with 273 additions and 267 deletions.
5 changes: 4 additions & 1 deletion .drone.star
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,19 @@ config = {
'languages': {
'go': {
'src': "out-go",
'clean-src': "out-go/*",
'repo-slug': "libre-graph-api-go",
'branch': 'main',
},
'typescript-axios': {
'src': "out-typescript-axios",
'src': "out-typescript-axios/*",
'repo-slug': "libre-graph-api-typescript-axios",
'branch': 'main',
},
'cpp-qt-client': {
'src': "out-cpp-qt-client",
'clean-src': "out-cpp-qt-client/client/*",
'repo-slug': "libre-graph-api-cpp-qt-client",
'branch': 'main',
},
Expand Down Expand Up @@ -154,7 +157,7 @@ def generate(ctx, lang):
"name": "clean-%s" % lang,
"image": "owncloudci/alpine:latest",
"commands": [
"rm -rf %s/*" % config["languages"][lang]["src"],
"rm -rf %s" % config["languages"][lang]["clean-src"],
],
},
{
Expand Down
Loading

0 comments on commit a631330

Please sign in to comment.