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
keeleliin
keeleliin-wrapper
Commits
5f0fe327
Commit
5f0fe327
authored
Jul 23, 2015
by
priit
Browse files
todo fix
parent
4f689f87
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/service/executor/localExecutor.js
View file @
5f0fe327
...
...
@@ -31,8 +31,12 @@ function LocalExecutor() {
logger
.
debug
(
localCommand
.
commandParams
);
logger
.
debug
(
response
);
var
process
=
spawn
(
command
,
commandParams
);
self
.
_run
(
response
,
process
,
callback
);
try
{
var
process
=
spawn
(
command
,
commandParams
);
self
.
_run
(
response
,
process
,
callback
);
}
catch
(
e
)
{
callback
(
e
.
message
);
}
};
this
.
_run
=
function
(
response
,
process
,
callback
)
{
...
...
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