diff --git a/ChangeLog b/ChangeLog index 30710d1..225e07b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +btrbk-current + + * Replace "realpath -e" with "readlink -e" for mountpoint discovery + (close #92). + btrbk-0.23.2 * Added "lockfile" configuration option and --lockfile command line diff --git a/btrbk b/btrbk index 9aff4c8..0da8a18 100755 --- a/btrbk +++ b/btrbk @@ -46,7 +46,7 @@ use Carp qw(confess); use Getopt::Long qw(GetOptions); use Time::Local qw( timelocal timegm timegm_nocheck ); -our $VERSION = '0.23.2'; +our $VERSION = '0.23.3-dev'; our $AUTHOR = 'Axel Burri '; our $PROJECT_HOME = ''; @@ -1196,7 +1196,7 @@ sub system_realpath($) my $path = $vol->{PATH} // die;; my @quiet = ($loglevel < 3) ? ('-q') : (); - my $ret = run_cmd(cmd => [ qw(realpath), '-e', @quiet, $path ], + my $ret = run_cmd(cmd => [ qw(readlink), '-e', @quiet, $path ], rsh => $vol->{RSH}, non_destructive => 1, );