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
5ae86f4e
Commit
5ae86f4e
authored
Jul 11, 2018
by
Guilhem Saurel
Browse files
fix looking for projects slugs with _/-
parent
df96d99f
Pipeline
#938
passed with stages
in 48 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
rainboard/models.py
View file @
5ae86f4e
...
...
@@ -225,7 +225,7 @@ class Project(Links, NamedModel, TimeStampedModel):
except
DataError
:
self
.
__dict__
[
value
]
=
old
for
dependency
in
re
.
findall
(
r
'ADD_[^ ]+_DEPENDENCY\s*\(["\']([^ "\']+).*["\']\)'
,
content
,
re
.
I
):
project
=
Project
.
objects
.
filter
(
slug
=
dependency
)
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
())
if
not
dependency
.
cmake
:
...
...
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