Fix SyntaxError introduced by a refactor in bc0f5ee

$ brew update
==> Updating Homebrew...
To restore the stashed changes to /usr/local/Homebrew, run:
  cd /usr/local/Homebrew && git stash pop
  File "<string>", line 1
    import fcntl; fcntl.flock(, fcntl.LOCK_EX | fcntl.LOCK_NB)
                              ^
SyntaxError: invalid syntax

Introduced on May 2, 2024 with bc0f5ee62a
This commit is contained in:
Adam Blazczak 2024-09-01 10:40:23 -07:00
parent 21443e60e4
commit 245c93785a

View File

@ -64,7 +64,7 @@ _create_lock() {
flock -n "${lock_file_descriptor}" flock -n "${lock_file_descriptor}"
elif [[ -x "${python}" ]] elif [[ -x "${python}" ]]
then then
"${python}" -c "import fcntl; fcntl.flock(${lock_fd}, fcntl.LOCK_EX | fcntl.LOCK_NB)" "${python}" -c "import fcntl; fcntl.flock(${lock_file_descriptor}, fcntl.LOCK_EX | fcntl.LOCK_NB)"
else else
onoe "Cannot create \`brew ${command_name_and_args}\` lock due to missing/too old ruby/flock/python, please avoid running Homebrew in parallel." onoe "Cannot create \`brew ${command_name_and_args}\` lock due to missing/too old ruby/flock/python, please avoid running Homebrew in parallel."
fi fi