teel / stasiscl

Automatically exported from code.google.com/p/stasiscl
0 stars 0 forks source link

stasis history -dir <directory> fails #14

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
% ./stasis history -dir ~/wow/wir-raids
./stasis: STDIN is no longer supported, please use -file (see 'stasis help'
for more details)

Here's a patch:

166,171c166,169
< if( $action eq "add" || $action eq "print" ) {
<     if ( $opt_file ) {
<         open $fh, $opt_file or bomb "could not open file: $opt_file";
<     } else {
<         bomb "STDIN is no longer supported, please use -file (see 'stasis
help' for more details)";
<     }

---
> if( $opt_file ) {
>     open $fh, $opt_file or bomb "could not open file: $opt_file";
> } else {
>     bomb "STDIN is no longer supported, please use -file (see 'stasis
help' for more details)";

-- Abbi@EJ

Original issue reported on code.google.com by strand.o...@gmail.com on 2 May 2008 at 1:09

GoogleCodeExporter commented 8 years ago
Fixed in revision 72, thanks and sorry :(

Original comment by gianmerlino@gmail.com on 2 May 2008 at 3:27