Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added a check to the zsh completions generation step #356

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

ericcurtin
Copy link
Collaborator

Ensuring that zsh is actually supported

Ensuring that zsh is actually supported

Signed-off-by: Eric Curtin <ecurtin@redhat.com>
@@ -64,8 +64,10 @@ completions:
mkdir -p completions/fish/vendor_completions.d
register-python-argcomplete --shell fish ramalama > completions/fish/vendor_completions.d/ramalama.fish

mkdir -p completions/zsh/vendor-completions
register-python-argcomplete --shell zsh ramalama > completions/zsh/vendor-completions/_ramalama
if ! (register-python-argcomplete --shell zsh ramalama > completions/zsh/vendor-completions/_ramalama); then \
Copy link
Member

@rhatdan rhatdan Oct 22, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How about?

	tmpfile=$(mktemp)
	if ! (register-python-argcomplete --shell zsh ramalama > ${tmpfile}); then
		mkdir -p completions/zsh/vendor-completions; \
		mv ${tmpfile} completions/zsh/vendor-completions/_ramalama; \
	else
		rm ${tmpfile}
	fi

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants