Makefile: fix completions command

Signed-off-by: Adphi <philippe.adrien.nousse@gmail.com>
This commit is contained in:
Adphi 2022-09-12 10:13:41 +02:00
parent f855fe9c7a
commit 2cd50ff38c
Signed by: adphi
GPG Key ID: 46BE4062DB2397FF
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ completions: .build
@rm -rf completions
@mkdir -p completions
@for shell in bash zsh fish powershell; do \
d2vm completion $$shell > completions/d2vm.$$shell; \
./d2vm completion $$shell > completions/d2vm.$$shell; \
done
.PHONY: examples