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:
Report the exception when something goes wrong while doing the update.
francois (author)
Tue Jul 22 17:48:42 -0700 2008
commit  2320ede3b0517ce322fb1a4e9160650f5e2b9da6
tree    d4c6047dbfc7a7321fe6c33c03bd8d0eb1841983
parent  d7a2820f48c1ee38a239f110fbbe91a9971f7462
...
235
236
237
238
 
 
 
 
 
 
 
239
240
241
...
235
236
237
 
238
239
240
241
242
243
244
245
246
247
0
@@ -235,7 +235,13 @@ Main {
0
                                          :force => params["force"].value,
0
                                          :dry_run => params["dry-run"].value)
0
 
0
- cmd.run(params["directory"].value, target_revision)
0
+ begin
0
+ cmd.run(params["directory"].value, target_revision)
0
+ rescue
0
+ $stderr.puts $!.message
0
+ $stderr.puts $!.backtrace.join("\n")
0
+ exit_failure!
0
+ end
0
     end
0
   end
0
 

Comments

    No one has commented yet.