pocket-friends/pocket_friends/development/dev.py

19 lines
440 B
Python
Raw Normal View History

import os
2023-05-14 19:41:44 -04:00
import sys
import pygame
def reboot_system():
os.system('sudo reboot')
def shutdown_system():
2023-05-14 19:32:12 -04:00
os.system('sudo shutdown now')
2023-05-14 19:41:44 -04:00
def update():
2023-05-14 19:44:08 -04:00
os.system('bash "export PATH=/usr/local/sbin:/usr/local/bin:/usr/bin && cd ~/pocket_friends && git '
'pull"')
os.system('bash "export PATH=/usr/local/sbin:/usr/local/bin:/usr/bin && cd ~/pocket_friends && git '
'checkout ."')
2023-05-14 19:41:44 -04:00
sys.exit(1)