Nim: Fix some nimble paths

Change-Id: I78a66d17931316d9baec5f2857cae12a6a62ab2c
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Bernhard Beschow
2020-12-17 11:40:06 +01:00
parent f607f125f1
commit c01c69fc99
2 changed files with 2 additions and 4 deletions

View File

@@ -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 = {};