diff options
-rw-r--r-- | README.dev | 1 | ||||
-rwxr-xr-x | check_postgres.pl | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/README.dev b/README.dev index e27e24e24..bf106e3f3 100644 --- a/README.dev +++ b/README.dev @@ -30,6 +30,7 @@ Login to the bucardo.org box, and then: * prove -v t/00_release.t * cd ~/www/downloads * cp -i ~/code/check_postgres/check_postgres* . +* ln -sf <latest tarball> check_postgres.tar.gz * cd ~/www/check_postgres * ln -s ../downloads/<latest tarball> . * edit latest_version.txt diff --git a/check_postgres.pl b/check_postgres.pl index 0fbcc1e18..c39f1b348 100755 --- a/check_postgres.pl +++ b/check_postgres.pl @@ -30,6 +30,8 @@ $Data::Dumper::Varname = 'POSTGRES'; $Data::Dumper::Indent = 2; $Data::Dumper::Useqq = 1; +binmode STDOUT, ':utf8'; + our $VERSION = '2.19.0'; use vars qw/ %opt $PGBINDIR $PSQL $res $COM $SQL $db /; |