diff options
author | Andreas Guldstrand <andreas.guldstrand@gmail.com> | 2016-05-14 17:59:05 +0200 |
---|---|---|
committer | Andreas Guldstrand <andreas.guldstrand@gmail.com> | 2016-05-14 17:59:05 +0200 |
commit | 3921f2011bbe1e3f48684b4caf3a76c1d584732e (patch) | |
tree | 015272ff2c02d61f623acefc8558f6fcb3e48828 /SBO-Lib/lib | |
parent | eea0f12f5566590880794583493313c1e659491b (diff) | |
download | sbotools2-3921f2011bbe1e3f48684b4caf3a76c1d584732e.tar.xz |
SBO::Lib: document another race condition in git fetch/reset combo
Diffstat (limited to 'SBO-Lib/lib')
-rw-r--r-- | SBO-Lib/lib/SBO/Lib.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/SBO-Lib/lib/SBO/Lib.pm b/SBO-Lib/lib/SBO/Lib.pm index 26e6561..205909d 100644 --- 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; |