From aeb20fc793661338955363559cf4ee14218cd097 Mon Sep 17 00:00:00 2001 From: LuK1337 Date: Tue, 25 Mar 2025 13:27:44 +0100 Subject: [PATCH] cicd: Don't forward aapt stderr to stdout --- cicd/verify-permissions.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cicd/verify-permissions.py b/cicd/verify-permissions.py index 14bcd3f..169b970 100755 --- a/cicd/verify-permissions.py +++ b/cicd/verify-permissions.py @@ -103,8 +103,7 @@ for partition in partitions: # Loop over all the APKs in the partition we want for apk in glob(GLOB_APK_STR.format(partition)): # Run 'aapt d permissions' on APK - aapt_output = subprocess.check_output(AAPT_CMD + [apk], - stderr=subprocess.STDOUT).decode(encoding='UTF-8') + aapt_output = subprocess.check_output(AAPT_CMD + [apk]).decode(encoding='UTF-8') lines = aapt_output.splitlines() # Extract package name from the output # Output looks like: