summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2010-11-03 12:06:54 -0500
committerJesse Luehrs <doy@tozt.net>2010-11-03 12:06:54 -0500
commitf605f3d9d1d7774c993176042961999e8e6c8754 (patch)
treeaed6d9091ff5886acd457c06279471ecc2390a35
parentea51780aebd697e9ab92a0b4cb4f30a49d6ccde4 (diff)
downloadapp-termcast-f605f3d9d1d7774c993176042961999e8e6c8754.tar.gz
app-termcast-f605f3d9d1d7774c993176042961999e8e6c8754.zip
heh, don't recreate the termcast object here
-rw-r--r--bin/termcast2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/termcast b/bin/termcast
index fcf7bc4..9fdca0e 100644
--- a/bin/termcast
+++ b/bin/termcast
@@ -19,4 +19,4 @@ to a termcast server. See L<App::Termcast> for options documentation.
my $tc = App::Termcast->new_with_options;
my @argv = @{ $tc->extra_argv };
push @argv, ($ENV{SHELL} || '/bin/sh') if !@argv;
-App::Termcast->new_with_options->run(@argv);
+$tc->run(@argv);