Android: Fix use of keytool on Windows

Fixes: QTCREATORBUG-26647
Change-Id: I34fd2b4304480186d1a05e2c9101b2cfbd1e8e47
Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
This commit is contained in:
Kai Köhne
2021-12-02 16:41:20 +01:00
committed by Kai Koehne
parent dbc4cd6f4a
commit 16c8f1a9b6

View File

@@ -590,7 +590,7 @@ FilePath AndroidConfig::openJDKBinPath() const
FilePath AndroidConfig::keytoolPath() const
{
return openJDKBinPath().pathAppended(keytoolName);
return openJDKBinPath().pathAppended(keytoolName).withExecutableSuffix();
}
QVector<AndroidDeviceInfo> AndroidConfig::connectedDevices(QString *error) const