diff --git a/src/xschem.tcl b/src/xschem.tcl index 6ef9ae6a..7e58356a 100644 --- a/src/xschem.tcl +++ b/src/xschem.tcl @@ -8157,7 +8157,9 @@ proc source_user_tcl_files {} { proc eval_postinit_commands {} { global postinit_commands if {[info exists postinit_commands]} { - catch {uplevel #0 $postinit_commands} + if {[catch {uplevel #0 $postinit_commands} res]} { + puts "executing $postinit_commands:\n\n$res" + } } }