added bin to commands

This commit is contained in:
Nicholas Dyer 2023-05-14 19:44:08 -04:00
parent 2def4f846a
commit ad97725634
1 changed files with 4 additions and 2 deletions

View File

@ -12,6 +12,8 @@ def shutdown_system():
os.system('sudo shutdown now')
def update():
os.system('bash "cd ~/pocket_friends && git pull"')
os.system('bash "cd ~/pocket_friends && git checkout ."')
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 ."')
sys.exit(1)