jagarsoft

Results 11 comments of jagarsoft

I'm working in new features I bet for expect for testing shell scripts Do you think it's good that I work on that line? I'll do all my very best!...

I've started to work on it ... By now, I have an more general solution that I think it will be more useful in the (near) future, but remember it...

I'm proud to announce that shell-test project is approaching @frrad's PR #60 I hope it will be ready in next weeks (my time constraints are not smaller than yours 😢)

Hi all. I have [shell-test](https://github.com/jagarsoft/shell-test) ready for mysql2sqlite, but tests do not pass (😢) and it should be I have open an issue here https://github.com/jagarsoft/mysql2sqlite/issues/1 Please, would you be so...

Hello!! How about you use an array of options? like this: [ 'checkForObjectIdentity' => true, 'strict' => false, 'order' => true ]

The problem was detected in line that skips . and .. entries of the root directory in -d flag

Where it says: `next if $file =~ /^..?$/ ;` must say: `next if $file =~ /^\.\.?$/ ;` That's all folks! ;-)

This can be reproduced like this: ```sh mkdir computer mkdir computer\0 mkdir computer\1 mkdir computer\2 echo 01.xml > computer\0\01.xml echo 02.xml > computer\0\02.xml echo 10.xml > computer\1\10.xml echo 11.xml >...

With this warns ;-) ```perl sub loaddirectory { my ($directory) = @_; warn "In $directory\n"; die "directory $directory does not exist\n" unless -d $directory; die "directory $directory is not readable\n"...