From 5eb4b1d6f19bc1e626e27ac5aae87a5bf1f9fd3e Mon Sep 17 00:00:00 2001 From: Joao P Dubas Date: Mon, 12 Feb 2024 23:46:18 +0000 Subject: [PATCH] chore: fix dry run patch target --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3aaea92..3e25d2b 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ patch_init_lua: ## create a patch file with the changes made in kickstart's init .PHONY: patch_init_lua_dry_run patch_init_lua_dry_run: ## show the changes made in kickstart's init.lua file - @cd $(neovim_config_dir) && git --patch init.lua + @cd $(neovim_config_dir) && git diff --patch init.lua .PHONY: help help: ## show help message