Skip to content

Commit

Permalink
Fixing if all() parameter type
Browse files Browse the repository at this point in the history
  • Loading branch information
marcleblanc2 committed Feb 20, 2024
1 parent 84e9811 commit 35328e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion repo-converter/build/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -541,7 +541,7 @@ def subprocess_run(args, password=None, echo_password=None):
# Handle the case of abandoned git svn lock files blocking fetch processes
# We already know that no other git svn fetch processes are running, because we checked for that before spawning this fetch process
# fatal: Unable to create '/sourcegraph/src-serve-root/svn.apache.org/wsl/zest/.git/svn/refs/remotes/git-svn/index.lock': File exists. Another git process seems to be running in this repository, e.g. an editor opened by 'git commit'. Please make sure all processes are terminated then try again. If it still fails, a git process may have crashed in this repository earlier: remove the file manually to continue. write-tree: command returned error: 128
if all("Unable to create", "index.lock", "File exists") in std_err_without_password:
if all(["Unable to create", "index.lock", "File exists"]) in std_err_without_password:

try:

Expand Down

0 comments on commit 35328e2

Please sign in to comment.