We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ebad45 commit f4a60e6Copy full SHA for f4a60e6
bin/generate-zbm
@@ -111,6 +111,7 @@ if ( defined $runConf{migrate} ) {
111
112
if ( -r $runConf{config} ) {
113
eval {
114
+ local $SIG{'__DIE__'};
115
my $yaml = YAML::PP->new( boolean => 'boolean' )->load_file( $runConf{config} );
116
%config = %$yaml;
117
} or do {
@@ -127,8 +128,13 @@ omit the `--config` option, an output location
127
128
$default_config
129
130
will be used by default.
131
+
132
+----
133
134
EOF
135
print $error;
136
137
+ warn $@ if $@;
138
exit 1;
139
};
140
} else {
0 commit comments