From 2cd50ff38c50254c868a6975f7d41a300bb17f59 Mon Sep 17 00:00:00 2001 From: Adphi Date: Mon, 12 Sep 2022 10:13:41 +0200 Subject: [PATCH] Makefile: fix completions command Signed-off-by: Adphi --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4eade6f..5adb8e1 100644 --- a/Makefile +++ b/Makefile @@ -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