From 6b154c31243a89e9893bb084b675248ebf21583a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ensar=20Saraj=C4=8Di=C4=87?= Date: Mon, 9 May 2022 18:18:59 +0200 Subject: [PATCH] Fix backup dir creation in makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b7cae58..b5c6ead 100644 --- a/Makefile +++ b/Makefile @@ -340,7 +340,7 @@ alacritty_terminfo: check_os .PHONY: prepare_backup_dir prepare_backup_dir: check_os @echo "Creating $(BACKUP_DIR)" - @mkdir $(BACKUP_DIR) + @mkdir -p $(BACKUP_DIR) .PHONY: clean_backup clean_backup: check_os