Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,7 @@ public static File getIDFToolsJsonFileForInstallation()
public static String getIDFPath()
{
String idfPath = new IDFEnvironmentVariables().getEnvValue(IDFEnvironmentVariables.IDF_PATH);

if (StringUtil.isEmpty(idfPath))
{

Expand All @@ -189,6 +190,7 @@ public static String getIDFPath()
public static String getIDFPythonEnvPath()
{
String idfPyEnvPath = new IDFEnvironmentVariables().getEnvValue(IDFEnvironmentVariables.IDF_PYTHON_ENV_PATH);

idfPyEnvPath = idfPyEnvPath.strip();
if (!StringUtil.isEmpty(idfPyEnvPath))
{
Expand Down Expand Up @@ -296,6 +298,7 @@ public static java.nio.file.Path findCommand(String command, String pathStr)
public static String findCommandFromBuildEnvPath(String command)
{
String pathStr = new IDFEnvironmentVariables().getEnvValue(IDFEnvironmentVariables.PATH);

if (pathStr != null)
{
java.nio.file.Path commandPath = findCommand(command, pathStr);
Expand Down
3 changes: 2 additions & 1 deletion tests/com.espressif.idf.core.test/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ Export-Package: com.espressif.idf.core.test,
org.apache.commons.lang3.text.translate,
org.apache.commons.lang3.time,
org.apache.commons.lang3.tuple
Import-Package: org.eclipse.core.runtime,
Import-Package: org.eclipse.cdt.core.envvar,
org.eclipse.core.runtime,
org.eclipse.core.runtime.jobs,
org.eclipse.core.variables
Loading
Loading