1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2026-01-11 13:03:10 +01:00

ci(deps): add kube-ps1 to dependencies (#13283)

Co-authored-by: Carlo Sala <carlosalag@protonmail.com>
This commit is contained in:
Tom Parker-Shemilt
2026-01-05 10:41:34 +00:00
committed by GitHub
parent d23d3ea69f
commit 72625e2f2f
2 changed files with 16 additions and 2 deletions

View File

@@ -595,9 +595,15 @@ def main():
# Cache YAML version
DependencyStore.set(data)
dependencies = data["dependencies"]
for path in dependencies:
if len(sys.argv) > 1:
# argv is list of dependencies to run, default is all of them
dependency_list = sys.argv[1:]
else:
dependency_list = dependencies.keys()
for path in dependency_list:
dependency = Dependency(path, dependencies[path])
dependency.update_or_notify()