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

Commit

Permalink
update python indexer to make it accept Windows Python environment wi…
Browse files Browse the repository at this point in the history
…th python.exe in root directory (issue #771)
  • Loading branch information
mlangkabel committed Dec 10, 2019
1 parent 097833b commit 426955f
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 426955f

Please sign in to comment.