lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


On Dec 21, 2007 2:25 PM, Mike Schmitz <mschmitz@colug.org> wrote:
> Leo Razoumov wrote:
> > Unfortunately, in direct defiance of its own documentation shake-1.0
> > ignores the file passed on a command name
> This fixes the bug:
>
> @@ -36,9 +36,9 @@
>                 f(run)
>                 return true
>         end
> -       f, errmsg = io.open(user_test)
> +       f, errmsg = io.open(filename)
>         if f then
> -               run:test(user_test, title)
> +               run:test(filename, title)
>                 return true
>         end
>  end

Indeed, a silly bug. :o)

Thanks for the quick report and patch. The CVS HEAD already contains
this fix (and some others) and we should have a 1.0.1 release soon.

André