Allow CLI help without root

Move helper.check_root to after argparse runs, so it can display the help without needing root.
pull/84/head
tutacat 2 years ago committed by GitHub
parent a701ca8027
commit 771b8d7224
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -15,7 +15,6 @@ def main():
Does stuff like installing Gapps, Installing NDK Translation and getting Android ID for device registration.
Use -h flag for help !
"""
helper.check_root()
parser = argparse.ArgumentParser(description=about, formatter_class=argparse.RawDescriptionHelpFormatter)
parser.add_argument('-g', '--install-gapps',
dest='gapps',
@ -38,6 +37,7 @@ def main():
help='Integrate Widevine DRM (L3)',
action='store_true')
args = parser.parse_args()
helper.check_root()
if args.getid:
Android_id().get_id()
if args.gapps:

Loading…
Cancel
Save