We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61c77a8 commit 5d34481Copy full SHA for 5d34481
dev/main
@@ -30,8 +30,13 @@ if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then
30
export PATH=${PATH}:/c/Program\ Files\ \(x86\)/Subversion/bin
31
export PATH=${PATH}:${JAVA_HOME}
32
33
+ PYTHON_PATH="/c/Python39"
34
+ if [[ ! -d $PYTHON_PATH ]]; then
35
+ echo "Not a directory: $PYTHON_PATH"
36
+ exit 1
37
+ fi
38
# needs to be before the default Python 2
- export PATH=/c/Python39:${PATH}
39
+ export PATH=${PYTHON_PATH}:${PATH}
40
41
extra_args="$extra_args -Dorg.opengrok.indexer.analysis.Ctags=c:\\ProgramData\\chocolatey\\lib\\universal-ctags\\tools\\ctags.exe"
42
fi
0 commit comments