Skip to content
GitLab
Menu
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
227aeb8b
Commit
227aeb8b
authored
Jul 11, 2018
by
Guilhem Saurel
Browse files
Project.cmake: Dependency regex: quotes are optionnal
parent
5ae86f4e
Pipeline
#939
passed with stages
in 47 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
rainboard/models.py
View file @
227aeb8b
...
...
@@ -224,7 +224,7 @@ class Project(Links, NamedModel, TimeStampedModel):
self
.
save
()
except
DataError
:
self
.
__dict__
[
value
]
=
old
for
dependency
in
re
.
findall
(
r
'ADD_[
^
]+_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
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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