-
Notifications
You must be signed in to change notification settings - Fork 79
/
Copy pathupdater.py
29 lines (22 loc) · 866 Bytes
/
updater.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/usr/bin/env python
# -.- coding: utf-8 -.-
# Coded by: Alisson Moretto - 4w4k3 - [email protected]
# view more: https://github.com/4w4k3/rePy2exe
import subprocess
import urllib2
def update_client_version(version):
with open("version.txt", "r") as vnum:
if vnum.read() != version:
return True
else:
return False
def main():
version = urllib2.urlopen("https://raw.githubusercontent.com/4w4k3/rePy2exe/master/version.txt").read()
if update_client_version(version) is True:
subprocess.call(["git", "pull", "origin", "master"])
return "[*] Updated to latest version: v{}..".format(version)
else:
return "[*] You are already up to date with git origin master."
if __name__ == '__main__':
print("[*] Checking version information..")
print(main())