Skip to content

Commit 5a39543

Browse files
authored
🐛 Fix override script (#103)
Signed-off-by: Evaline Ju <[email protected]>
1 parent 519fc15 commit 5a39543

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/update_vllm_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def main():
4949
),
5050
None,
5151
)
52-
if not vllm_git_index or not vllm_darwin_index:
52+
if vllm_git_index is None or vllm_darwin_index is None:
5353
print(f"vllm dependencies to be overwritten are missing - skipping update")
5454
sys.exit(0)
5555
current_version = parse_current_version(vllm_string=vllm_deps[vllm_git_index])

0 commit comments

Comments
 (0)