コード例 #1
0
ファイル: bundle.py プロジェクト: jalanb/vim-pandemic
 def update(self):
     return shell.run(["./.update"])
コード例 #2
0
ファイル: bundle.py プロジェクト: jalanb/vim-pandemic
 def clone(self, source, name):
     return shell.run(["cp", "-R", source, name])
コード例 #3
0
ファイル: bundle.py プロジェクト: jalanb/vim-pandemic
 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
コード例 #4
0
ファイル: bundle.py プロジェクト: jalanb/vim-pandemic
 def update(self):
     return shell.run(["hg", "pull"])
コード例 #5
0
ファイル: bundle.py プロジェクト: jalanb/vim-pandemic
 def clone(self, source, name):
     return shell.run(["hg", "clone", source, name])
コード例 #6
0
ファイル: bundle.py プロジェクト: jalanb/vim-pandemic
 def update(self):
     return shell.run(["git", "pull", "--rebase"])