Skip to content
This repository has been archived by the owner on Dec 14, 2021. It is now read-only.

Commit

Permalink
logic: update python indexer to fix issue #771 (#846)
Browse files Browse the repository at this point in the history
This will allow the Python indexer to accept a Windows Python environment with the python.exe located in the root directory of the environment.
  • Loading branch information
mlangkabel authored and egraether committed Dec 16, 2019
1 parent 8a7ba18 commit 32136c5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion script/download_python_indexer.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

SOURCETRAIL_PYTHON_INDEXER_VERSION="v1_db25_p1"
SOURCETRAIL_PYTHON_INDEXER_VERSION="v1_db25_p2"

# Determine current platform
PLATFORM='unknown'
Expand Down
2 changes: 1 addition & 1 deletion src/lib_python/project/SourceGroupPythonEmpty.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ std::vector<std::shared_ptr<IndexerCommand>> SourceGroupPythonEmpty::getIndexerC

if (!m_settings->getEnvironmentPath().empty())
{
args += L" --environment-path=" + m_settings->getEnvironmentPathExpandedAndAbsolute().wstr();
args += L" --environment-path=\"" + m_settings->getEnvironmentPathExpandedAndAbsolute().wstr() + L"\"";
}

if (ApplicationSettings::getInstance()->getVerboseIndexerLoggingEnabled())
Expand Down

0 comments on commit 32136c5

Please sign in to comment.