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
Education
Cantor
Commits
493cb939
Commit
493cb939
authored
Sep 15, 2019
by
Nikita Sirgienko
Browse files
[Lua] Use path to executable from settings
parent
fcc477f5
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/backends/lua/luasession.cpp
View file @
493cb939
...
...
@@ -55,7 +55,7 @@ void LuaSession::login()
*/
m_process
=
new
QProcess
(
this
);
m_process
->
setProgram
(
QLatin1String
(
"/usr/bin/lua"
));
m_process
->
setProgram
(
LuaSettings
::
self
()
->
path
().
toLocalFile
(
));
m_process
->
setArguments
(
QStringList
()
<<
QLatin1String
(
"-i"
));
m_process
->
setProcessChannelMode
(
QProcess
::
SeparateChannels
);
...
...
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