Beispiel #1
0
 def checkout(self):
     if isdir(self.wc):
         shutil.rmtree(self.wc)
     self.svn.checkout(self.uri, self.wc)
     self.dot()
     if not self.keep:
         try_remove_dir_atexit(self.wc)
Beispiel #2
0
 def checkout(self):
     if isdir(self.wc):
         shutil.rmtree(self.wc)
     self.svn.checkout(self.uri, self.wc)
     self.dot()
     if not self.keep:
         try_remove_dir_atexit(self.wc)
Beispiel #3
0
 def create(self, **kwds):
     if isdir(self.path):
         shutil.rmtree(self.path)
     self.evnadmin.create(self.name, **kwds)
     self.dot()
     if not self.keep:
         try_remove_dir_atexit(self.path)
     self.reload_conf()
Beispiel #4
0
 def create(self, **kwds):
     if isdir(self.path):
         shutil.rmtree(self.path)
     self.evnadmin.create(self.name, **kwds)
     self.dot()
     if not self.keep:
         try_remove_dir_atexit(self.path)
     self.reload_conf()