From 358f997160242fd741bc08fa47129295611654ae Mon Sep 17 00:00:00 2001 From: "Kyle J. McKay" Date: Wed, 14 Feb 2018 12:58:44 -0800 Subject: [PATCH] Project.pm: add semantically important missing semicolon The unfortunately missing semicolon does not actually cause a syntax error but it does semantically alter the code by effectively making the following line into a nop which then has a cascading failure effect on subsequent lines. Add the overlooked but missing and very important semicolon. Signed-off-by: Kyle J. McKay --- Girocco/Project.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Girocco/Project.pm b/Girocco/Project.pm index 6869b3e..e1f4185 100644 --- a/Girocco/Project.pm +++ b/Girocco/Project.pm @@ -408,7 +408,7 @@ sub _alternates_setup { # If somehow either our objects/pack or the prospective alternate's pack # directory does not exist decline to set up any alternates my $altpath = "$forkee_path/objects"; - -d $self->{path}.'/objects/pack' && -d $altpath.'/pack' or return + -d $self->{path}.'/objects/pack' && -d $altpath.'/pack' or return; # If our objects/pack and the prospective alternate's pack directory # do not share the same device then decline to set up any alternates -- 2.11.4.GIT