sbotools2

Maintenance fork of the original sbotools version 2
Log | Files | Refs | README

commit 3921f2011bbe1e3f48684b4caf3a76c1d584732e
parent eea0f12f5566590880794583493313c1e659491b
Author: Andreas Guldstrand <andreas.guldstrand@gmail.com>
Date:   Sat, 14 May 2016 17:59:05 +0200

SBO::Lib: document another race condition in git fetch/reset combo

Diffstat:
MSBO-Lib/lib/SBO/Lib.pm | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/SBO-Lib/lib/SBO/Lib.pm b/SBO-Lib/lib/SBO/Lib.pm @@ -331,6 +331,7 @@ sub git_sbo_tree { chdir $repo_path; $res = eval { die unless system(qw! git fetch !) == 0; # if system() doesn't return 0, there was an error + _race::cond 'git repo could be changed or deleted here'; die unless system(qw! git reset --hard origin !) == 0; unlink "$repo_path/SLACKBUILDS.TXT"; 1;