Skip to content
Snippets Groups Projects
Commit 6b38b7b7 authored by Langella Olivier's avatar Langella Olivier
Browse files

guide the user in tandem binary installation

parent d3c20cda
No related branches found
No related tags found
No related merge requests found
......@@ -263,7 +263,16 @@ Utils::checkXtandemVersion(const QString &tandem_bin_path)
{
// dir.path() returns the unique directory path
throw pappso::PappsoException(
QObject::tr("Please check permissions on !Tandem software found at %1.")
QObject::tr("Please check permissions on X!Tandem software found at %1 "
"(file not readable).")
.arg(tandem_exe.absoluteFilePath()));
}
if(!tandem_exe.isExecutable())
{
// dir.path() returns the unique directory path
throw pappso::PappsoException(
QObject::tr("Please check permissions on X!Tandem software found at %1 "
"(file not executable).")
.arg(tandem_exe.absoluteFilePath()));
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment