aboutsummaryrefslogtreecommitdiff
path: root/lib/Sietima/CmdLine.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Sietima/CmdLine.pm')
-rw-r--r--lib/Sietima/CmdLine.pm6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/Sietima/CmdLine.pm b/lib/Sietima/CmdLine.pm
index b636533..180d3dd 100644
--- a/lib/Sietima/CmdLine.pm
+++ b/lib/Sietima/CmdLine.pm
@@ -114,6 +114,10 @@ sub _build_app_spec($self) {
return App::Spec->read({
$spec_data->%*,
$self->extra_spec->%*,
+
+ # App::Spec 0.005 really wants a class name, even when we pass
+ # a pre-build cmd object to the Runner
+ class => ref($self->sietima),
});
}
@@ -141,8 +145,6 @@ sub _build_runner($self) {
return Sietima::Runner->new({
spec => $self->app_spec,
cmd => $self->sietima,
- # App::Spec 0.005 really wants a class name
- class => ref($self->sietima),
});
}