Skip to content

Commit cf1611f

Browse files
committed
biglink: ensure that no empty argument will be used
1 parent 3faf827 commit cf1611f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pythonforandroid/tools/biglink

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ while args:
3838
continue
3939
if a not in unique_args:
4040
unique_args.insert(0, a)
41-
41+
unique_args = [x for x in unique_args if x]
4242

4343
print('Biglink create %s library' % sys.argv[1])
4444
print('Biglink arguments:')

0 commit comments

Comments
 (0)