Skip to content

Commit

Permalink
logic: update python indexer to fix issue CoatiSoftware#771 (CoatiSof…
Browse files Browse the repository at this point in the history
…tware#846)

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 Dec 10, 2019
1 parent 732c389 commit d33a535
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 d33a535

Please sign in to comment.