8000 Fixed typo == -> = when setting build_type · brvier/python-for-android@eb16a59 · GitHub
[go: up one dir, main page]

Skip to content

Commit eb16a59

Browse files
committed
Fixed typo == -> = when setting build_type
1 parent fbfc134 commit eb16a59

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pythonforandroid/toolchain.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -772,10 +772,10 @@ def apk(self, args):
772772
if build_type == 'auto':
773773
info('Selecting java build tool:')
774774
if exists('gradlew'):
775-
build_type == 'gradle'
775+
build_type = 'gradle'
776776
info(' Building with gradle, as gradle executable is present')
777777
else:
778-
build_type == 'ant'
778+
build_type = 'ant'
779779
info(' Building with ant, as no gradle executable detected')
780780

781781
if build_type == 'gradle':

0 commit comments

Comments
 (0)
0