Skip to content

Commit 896ca92

Browse files
committed
Fixed wrong default python executable in build.gradle
1 parent 4b48ddb commit 896ca92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ repositories {
3636
ext {
3737
set('snippetsDir', file('build/generated-snippets'))
3838
applicationProperties = System.getProperty('applicationProperties', './src/test/resources/test-config/application-test.properties')
39-
pythonLocation = System.getProperty('pythonExecutable', 'file:///c:/python310/python.exe')
39+
pythonLocation = System.getProperty('pythonExecutable', 'file:///usr/bin/python3')
4040
}
4141

4242
dependencies {

0 commit comments

Comments
 (0)