Beispiel #1
0
 def update(self):
     return shell.run(["./.update"])
Beispiel #2
0
 def clone(self, source, name):
     return shell.run(["cp", "-R", source, name])
Beispiel #3
0
 def clone(self, source, name):
     outmsg = shell.run(["cp", "-R", source, name])
     with open(f"{name}/.source", "w") as stream:
         stream.write(source)
     return outmsg
Beispiel #4
0
 def update(self):
     return shell.run(["hg", "pull"])
Beispiel #5
0
 def clone(self, source, name):
     return shell.run(["hg", "clone", source, name])
Beispiel #6
0
 def update(self):
     return shell.run(["git", "pull", "--rebase"])