From 89097fa4186ccf59acd9d77ff8734c7838a3eb87 Mon Sep 17 00:00:00 2001 From: Sean Whitton Date: Wed, 12 Feb 2020 13:10:01 -0700 Subject: Fix logic in an example in Git::Annex::BatchCommand SYNOPSIS Signed-off-by: Sean Whitton --- Changes | 1 + lib/Git/Annex/BatchCommand.pm | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Changes b/Changes index d6ce3c1..82e2e9c 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,7 @@ Revision history for Git::Annex {{$NEXT}} + - Fix logic in an example in Git::Annex::BatchCommand SYNOPSIS. 0.001 2020-02-12 12:33:47-07:00 America/Phoenix - First public release. diff --git a/lib/Git/Annex/BatchCommand.pm b/lib/Git/Annex/BatchCommand.pm index 1629bb1..0351f09 100644 --- a/lib/Git/Annex/BatchCommand.pm +++ b/lib/Git/Annex/BatchCommand.pm @@ -24,7 +24,7 @@ package Git::Annex::BatchCommand; # see git-annex-find(1) -- `git annex find --batch --not --in here` # prints an empty string for each file which is not present - say "foo/bar is not present in this repo" if $batch->say("foo/bar"); + say "foo/bar is not present in this repo" unless $batch->ask("foo/bar"); =head1 DESCRIPTION -- cgit v1.2.3 From b76177b6c8bfa9b9a1e1e19c5d4446602c19c1a2 Mon Sep 17 00:00:00 2001 From: Sean Whitton Date: Tue, 18 Feb 2020 15:28:19 -0700 Subject: set signoff = 1 in dist.ini Signed-off-by: Sean Whitton --- dist.ini | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dist.ini b/dist.ini index 2359f29..0118691 100644 --- a/dist.ini +++ b/dist.ini @@ -15,7 +15,8 @@ version = 0.001 [PodSyntaxTests] [@Git] -signed = 1 +signed = 1 +signoff = 1 [@Filter] -bundle = @Basic -- cgit v1.2.3 From 00054c7dde9d7e712a7e0a7d2a82569a73b59589 Mon Sep 17 00:00:00 2001 From: Sean Whitton Date: Mon, 24 Feb 2020 07:32:13 -0700 Subject: annex-review-unused: 'b' should go back one entry not two Signed-off-by: Sean Whitton --- Changes | 1 + lib/App/annex_review_unused.pm | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/Changes b/Changes index 82e2e9c..2f5fc85 100644 --- a/Changes +++ b/Changes @@ -2,6 +2,7 @@ Revision history for Git::Annex {{$NEXT}} - Fix logic in an example in Git::Annex::BatchCommand SYNOPSIS. + - annex-review-unused: 'b' should go back one entry not two. 0.001 2020-02-12 12:33:47-07:00 America/Phoenix - First public release. diff --git a/lib/App/annex_review_unused.pm b/lib/App/annex_review_unused.pm index a1f9476..22e7a56 100644 --- a/lib/App/annex_review_unused.pm +++ b/lib/App/annex_review_unused.pm @@ -149,7 +149,6 @@ sub main { } elsif ($response eq "o" and defined $contentlocation) { system "xdg-open", $contentlocation; } elsif ($response eq "b" and $i > 0) { - $i--; $i--; pop @to_drop if @to_drop -- cgit v1.2.3 From e0c06699cfd13835d5aca677b51d3a0c83eabb38 Mon Sep 17 00:00:00 2001 From: Sean Whitton Date: Mon, 24 Feb 2020 07:32:57 -0700 Subject: bump version Signed-off-by: Sean Whitton --- dist.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist.ini b/dist.ini index 0118691..5d4923d 100644 --- a/dist.ini +++ b/dist.ini @@ -4,7 +4,7 @@ license = GPL_3 copyright_holder = Sean Whitton copyright_year = 2019-2020 -version = 0.001 +version = 0.002 [PkgVersion] [PodWeaver] -- cgit v1.2.3 From 9df5091987677ce9025a83917ca5dc89458ab513 Mon Sep 17 00:00:00 2001 From: Sean Whitton Date: Mon, 24 Feb 2020 07:35:56 -0700 Subject: v0.002 - Fix logic in an example in Git::Annex::BatchCommand SYNOPSIS. - annex-review-unused: 'b' should go back one entry not two. Signed-off-by: Sean Whitton --- Changes | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Changes b/Changes index 2f5fc85..4eec01b 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,8 @@ Revision history for Git::Annex {{$NEXT}} + +0.002 2020-02-24 07:33:02-07:00 America/Phoenix - Fix logic in an example in Git::Annex::BatchCommand SYNOPSIS. - annex-review-unused: 'b' should go back one entry not two. -- cgit v1.2.3