Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Gepetto
dashboard
Commits
335dc600
Commit
335dc600
authored
Jul 25, 2018
by
Guilhem Saurel
Browse files
parsing CMakeLists to find dependencies: what we are looking for always ends with a )
parent
4a215d17
Pipeline
#1048
passed with stages
in 1 minute and 2 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
rainboard/models.py
View file @
335dc600
...
...
@@ -225,7 +225,7 @@ class Project(Links, NamedModel, TimeStampedModel):
self
.
save
()
except
DataError
:
self
.
__dict__
[
value
]
=
old
for
dependency
in
re
.
findall
(
r
'ADD_[A-Z]+_DEPENDENCY\s*\(["\']?([^ "\']+).*["\']?\)'
,
content
,
re
.
I
):
for
dependency
in
re
.
findall
(
r
'ADD_[A-Z]+_DEPENDENCY\s*\(["\']?([^ "\'
)
]+).*["\']?\)'
,
content
,
re
.
I
):
project
=
Project
.
objects
.
filter
(
models
.
Q
(
slug
=
dependency
)
|
models
.
Q
(
slug
=
dependency
.
replace
(
'_'
,
'-'
)))
if
project
.
exists
():
dependency
,
_
=
Dependency
.
objects
.
get_or_create
(
project
=
self
,
library
=
project
.
first
())
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment