Skip to content

Commit 5a29d7a

Browse files
committed
Removed DIM from sh output print
1 parent b027f01 commit 5a29d7a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

pythonforandroid/toolchain.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def shprint(command, *args, **kwargs):
8383
command_string = command_path[-1]
8484
# if len(command_path) > 1:
8585
# command_string = '.../' + command_string
86-
string = ' '.join(['running', Style.DIM, command_string] + list(args))
86+
string = ' '.join(['running', command_string] + list(args))
8787

8888
# If logging is not in DEBUG mode, trim the command if necessary
8989
if logger.level > logging.DEBUG:
@@ -1776,7 +1776,8 @@ def get_recipe_env(self, arch):
17761776
env['LIBLINK'] = 'NOTNONE'
17771777
env['NDKPLATFORM'] = self.ctx.ndk_platform
17781778

1779-
# Every recipe uses its own liblink path, object files are collected and biglinked later
1779+
# Every recipe uses its own liblink path, object files are
1780+
# collected and biglinked later
17801781
liblink_path = join(self.get_build_container_dir(arch.arch), 'objects_{}'.format(self.name))
17811782
env['LIBLINK_PATH'] = liblink_path
17821783
ensure_dir(liblink_path)

0 commit comments

Comments
 (0)