diff options
author | Karl Semich <0xloem@gmail.com> | 2016-06-01 20:47:12 -0400 |
---|---|---|
committer | Karl Semich <0xloem@gmail.com> | 2016-06-01 20:47:12 -0400 |
commit | b5f398f8ffceb9e329c4a99eac918812f547dd75 (patch) | |
tree | 68a075c80a57330a0c46dc3b3174e9c0257b4710 /backend/update.py | |
parent | 5edbd82dcd165bedea5ae583faa76fe909ef4083 (diff) | |
download | standingwithresilience-b5f398f8ffceb9e329c4a99eac918812f547dd75.tar.gz standingwithresilience-b5f398f8ffceb9e329c4a99eac918812f547dd75.zip |
add fairlystable to update.py
Diffstat (limited to 'backend/update.py')
-rwxr-xr-x | backend/update.py | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/backend/update.py b/backend/update.py index 0af3898..8af8fb3 100755 --- a/backend/update.py +++ b/backend/update.py @@ -24,16 +24,22 @@ if not (found_ikiwiki or found_gitocalypse or found_freesitemgr): print("Changes will still be propagated if branchable is working.") print(":: Pulling from simple repos ...") +os.environ["GIT_SSH_COMMAND"] = "ssh -F backend/auth/ssh-config" status = 0 -status += os.system("git pull git://standingwithresilience.branchable.com/") +status += os.system("git pull git://standingwithresilience.branchable.com/ master") if status != 0: print("WARNING: failed to pull changes from branchable") #exit(status) -#status += os.system("git pull fairlystable-guest:/srv/git/standingwithresilience") +status += os.system("git pull fairlystable-guest:/srv/git/standingwithresilience master") +if status != 0: + print("WARNING: failed to pull changes from fairlystable") + #exit(status) + +del os.environ["GIT_SSH_COMMAND"] # Pull from freenet repos if found_gitocalypse: @@ -45,8 +51,12 @@ if found_gitocalypse: print(":: Pushing to simple repos ...") +os.environ["GIT_SSH_COMMAND"] = "ssh -F backend/auth/ssh-config" status += os.system("git push git://standingwithresilience.branchable.com/") +status += os.system("git push fairlystable-guest:/srv/git/standingwithresilience") + +del os.environ["GIT_SSH_COMMAND"] # Push to freenet repos |