public
Description: Piston is a utility that eases vendor branch management. This repository is a complete reimplementation of Piston to provide different backends, depending on the repositories and working copies you pistonize from.
Homepage: http://piston.rubyforge.org/
Clone URL: git://github.com/francois/piston.git
Search Repo:
Piston::Svn::WorkingCopy#after_remember doesn't only look for 'Not a 
versioned resource': the emptry string is also good for triggering the svn 
add.
francois (author)
Sat Mar 22 19:02:02 -0700 2008
commit  a7b5e41f15645c99f97f370904c28a9f57bc8e7b
tree    511f35b8403147993e87dff682710d7d2de8fbb0
parent  986f477aed67a5c7422380c8d308708581c8d0de
...
37
38
39
40
 
41
42
43
...
37
38
39
 
40
41
42
43
0
@@ -37,7 +37,7 @@
0
 
0
       def after_remember(path)
0
         info = svn(:info, path)
0
- return unless info =~ /\(not a versioned resource\)/i
0
+ return unless info =~ /\(not a versioned resource\)/i || info.empty?
0
         svn(:add, path)
0
       end
0
 

Comments

    No one has commented yet.