On Feb 21, 2016, at 9:20 AM, Ivan Nunes <
ivanels...@gmail.com> wrote:
> This error occurs after the log.
> Use of uninitialized value $_[1] in pattern match (m//) at /usr/local/share/perl/5.18.2/IO/Pager.pm
> sqitch (App::Sqitch) 0.9994
What version of IO::Pager to you have? Run
perl -MIO::Pager -E 'say IO::Pager->VERSION'
To find out. Make sure it’s the latest (0.35). It’s not the first time I’ve seen this error from that module.
> $ sqitch log testes
>
> On database testes
> ESC[32mDeploy 6bc9d20b15dcb868c4ac05082d7c63f53b95128dESC[0m
> Name: schema_escola
> Committer: Ivan Nunes <
ivan....@iv4n.com>
> Date: 2016-02-21 16:47:42 +0000
> add schema escola to db_escola
> ESC[31mFail 6bc9d20b15dcb868c4ac05082d7c63f53b95128dESC[0m
Your terminal isn’t configured to support xterm color escapes. Use `--no-color` to prevent those escapes from appearing. You can also turn it off in your configuration on that system with:
sqitch config --user --bool log.color 0
sqitch config --user --bool plan.color 0
Best,
David