Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
SOaAS
psot.repository
Commits
a574711d
Commit
a574711d
authored
Jun 21, 2017
by
Lukas Jelonek
Browse files
Fix bug: relative execution_directory does not work
parent
436ba8fb
Changes
1
Hide whitespace changes
Inline
Side-by-side
bin/psot
View file @
a574711d
...
...
@@ -53,7 +53,7 @@ def generate_execution(config, args):
execution
[
'fasta'
]
=
os
.
path
.
abspath
(
args
.
fasta
)
execution
[
'output'
]
=
os
.
path
.
abspath
(
args
.
output
)
if
args
.
execution_dir
:
execution
[
'directory'
]
=
args
.
execution_dir
execution
[
'directory'
]
=
os
.
path
.
abspath
(
args
.
execution_dir
)
else
:
execution
[
'directory'
]
=
tempfile
.
mkdtemp
()
execution
[
'modules'
]
=
generate_execution_modules_for_profile
(
config
,
args
.
profile
)
...
...
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