Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
dmt
Commits
cfad5399
Commit
cfad5399
authored
Sep 01, 2020
by
Thanassis Tsiodras
Browse files
Use relative paths in generated AADL dataview.
As requested in
taste-setup#6
parent
f2d905de
Pipeline
#2277
passed with stage
in 3 minutes and 7 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
dmt/asn2aadlPlus.py
View file @
cfad5399
...
...
@@ -290,7 +290,12 @@ def main():
panic
(
"'%s' is not a file!
\n
"
%
x
)
aadlFile
=
args
[
-
1
]
inputFiles
=
[
os
.
path
.
abspath
(
x
)
for
x
in
args
[:
-
1
]]
inputFiles
=
[
os
.
path
.
relpath
(
x
)
if
'tool-inst'
not
in
x
else
x
for
x
in
args
[:
-
1
]
]
def
md5
(
filename
):
hash_md5
=
hashlib
.
md5
()
...
...
Thanassis Tsiodras
@ttsiodras
mentioned in issue
taste-setup#6 (closed)
·
Sep 01, 2020
mentioned in issue
taste-setup#6 (closed)
mentioned in issue taste-setup#6
Toggle commit list
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