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
bucanl_eeglab_extensions
Batch Context
Commits
fa5c7f01
Commit
fa5c7f01
authored
May 02, 2018
by
Tyler Collins
Browse files
Octave job sbatch format needed a newline character.
parent
4d9b7026
Changes
1
Hide whitespace changes
Inline
Side-by-side
batch/exec_func/@ef_sbatch_driver/format_scheduler.m
View file @
fa5c7f01
...
...
@@ -111,7 +111,7 @@ function out = format_scheduler(~, job_spec)
poptions_string
=
[
poptions_string
{:}];
if
job_spec
.
is_octave
out
=
sprintf
(
'%s <(echo -e
''
#!/bin/bash%s%s %s%s %s
''
)'
,
...
out
=
sprintf
(
'%s <(echo -e
''
#!/bin/bash%s%s %s%s %s
''
)
\n
'
,
...
out
,
'\n'
,
job_spec
.
program
,
poptions_string
,
wrapper
,
job_spec
.
mfile_name
);
else
out
=
sprintf
(
'%s <(echo -e
''
#!/bin/bash%s%s%s
''
)'
,
...
...
...
Write
Preview
Supports
Markdown
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