Commit c3c9c88614c0e55d1a14d9babe7507308c04edbd

Authored by Thiago Rocha
1 parent 9abdc924
Exists in master

Modificada uma linha que deu erro no linux.

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
install-cacic/installcacic.cpp
... ... @@ -35,7 +35,7 @@ void InstallCacic::run(QStringList argv, int argc) {
35 35 #ifdef Q_OS_WIN
36 36 QString exitStatus = oCacic.startProcess(oCacic.getCacicMainFolder() + "cacic.exe", true, &ok);
37 37 #else
38   - oCacic.startProcess("cacic.exe", true, &ok);
  38 + QString exitStatus = oCacic.startProcess("cacic", true, &ok);
39 39 #endif
40 40 if (!ok)
41 41 std::cout << "Erro ao iniciar o processo: "
... ...