From 263a5f017f70de2ef8c1b5a6691a1fa404c7085f Mon Sep 17 00:00:00 2001 From: Paul Holzinger Date: Mon, 30 May 2022 14:38:56 +0200 Subject: [PATCH] fix make completions for all POSIX shells The {a,b} syntax is not POSIX compatible. The Makefile should run with all POSIX shells so we cannot use shell specific features like this. Fixes #1657 Signed-off-by: Paul Holzinger --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0efcf7c8..7035134d 100644 --- a/Makefile +++ b/Makefile @@ -153,7 +153,7 @@ docs-in-container: .PHONY: completions completions: bin/skopeo - install -d -m 755 completions/{bash,zsh,fish,powershell} + install -d -m 755 completions/bash completions/zsh completions/fish completions/powershell ./bin/skopeo completion bash >| completions/bash/skopeo ./bin/skopeo completion zsh >| completions/zsh/_skopeo ./bin/skopeo completion fish >| completions/fish/skopeo.fish