run-*-locally: The programs are now virt-[tool], not virt-[tool].pl
[libguestfs.git] / cat / run-cat-locally
index bba2c08..7c31aaf 100755 (executable)
@@ -34,7 +34,7 @@ my $path = $0;
 
 # Follow symlinks until we get to the real file
 while(-l $path) {
-    my $link = readlink($path);
+    my $link = readlink($path) or die "readlink: $path: $!";
     if(File::Spec->file_name_is_absolute($link)) {
         $path = $link;
     } else {
@@ -49,4 +49,4 @@ $ENV{LD_LIBRARY_PATH} = $path.'/src/.libs';
 $ENV{LIBGUESTFS_PATH} = $path.'/appliance';
 $ENV{PERL5LIB}        = $path.'/perl/blib/lib:'.$path.'/perl/blib/arch';
 
-exec('perl', $path.'/cat/virt-cat.pl', @ARGV);
+exec('perl', $path.'/cat/virt-cat', @ARGV);