forked from qt-creator/qt-creator
Nim: Fix some nimble paths
Change-Id: I78a66d17931316d9baec5f2857cae12a6a62ab2c Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
@@ -35,7 +35,6 @@
|
||||
#include <utils/qtcassert.h>
|
||||
|
||||
#include <QProcess>
|
||||
#include <QStandardPaths>
|
||||
|
||||
using namespace ProjectExplorer;
|
||||
using namespace Utils;
|
||||
@@ -72,7 +71,7 @@ static NimbleMetadata parseMetadata(const QString &nimblePath, const QString &wo
|
||||
{
|
||||
QProcess process;
|
||||
process.setWorkingDirectory(workingDirectory);
|
||||
process.start(QStandardPaths::findExecutable(nimblePath), {"dump"});
|
||||
process.start(nimblePath, {"dump"});
|
||||
process.waitForFinished();
|
||||
|
||||
NimbleMetadata result = {};
|
||||
|
||||
Reference in New Issue
Block a user