diff options
author | 2020-03-12 18:13:34 +0000 | |
---|---|---|
committer | 2020-07-08 22:51:35 +0100 | |
commit | ed0956a732124891bc7a2d69db2ca9d5d63542d5 (patch) | |
tree | 4cbb9c33651be43903fca2a0db701d7c9a877c4f | |
parent | eaf6e6a0ffe425e5116aa8f4a41ddcdc40a5d77f (diff) | |
download | yocto-autobuilder-helper-ed0956a732124891bc7a2d69db2ca9d5d63542d5.tar.gz |
run-config: Fix lockfile loop handling
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rwxr-xr-x | scripts/run-config | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/run-config b/scripts/run-config index ed13ca0..2ad38e2 100755 --- a/scripts/run-config +++ b/scripts/run-config @@ -122,6 +122,7 @@ if bttarball: else: subprocess.check_call(["wget", "-O", btdlpath, bttarball]) os.chmod(btdlpath, 0o775) + break except OSError: # We raced with someone else, try again pass |