mirror of
https://github.com/Divested-Mobile/DivestOS-Build.git
synced 2024-12-17 03:44:45 -05:00
7 lines
224 B
Python
7 lines
224 B
Python
|
import sys
|
||
|
|
||
|
apexes = open(sys.argv[1], "r");
|
||
|
for line in apexes:
|
||
|
print('--extra_apks ' + line.strip() + '.apex="$KEY_DIR/releasekey" \\');
|
||
|
print('--extra_apex_payload_key ' + line.strip() + '.apex="$KEY_DIR/avb.pem" \\');
|