Skip to content

Commit

Permalink
Update build.py
Browse files Browse the repository at this point in the history
  • Loading branch information
AeonLucid authored Jun 4, 2019
1 parent 76cef5a commit e25a745
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions build.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,13 @@ def extract_file(archive_path, dest_path):
def create_module_prop(path, frida_release):
# Create module.prop file.
module_prop = """id=magiskfrida
name=MagiskFrida
version=v{0}
versionCode={1}
author=AeonLucid
description=Runs frida-server on boot as root with magisk.
support=https://github.com/AeonLucid/MagiskFrida/issues
minMagisk=1530""".format(frida_release, frida_release.replace(".", ""))
name=MagiskFrida
version=v{0}
versionCode={1}
author=AeonLucid
description=Runs frida-server on boot as root with magisk.
support=https://github.com/AeonLucid/MagiskFrida/issues
minMagisk=1530""".format(frida_release, frida_release.replace(".", ""))

with open(os.path.join(path, "module.prop"), "w", newline='\n') as f:
f.write(module_prop)
Expand Down

0 comments on commit e25a745

Please # to comment.