From 1175a0de1a639b1d7feec25330bdd42819c4d3ec Mon Sep 17 00:00:00 2001 From: "a.stevan" <antoine.stevan@isae-supaero.fr> Date: Wed, 29 Jan 2025 11:11:22 +0100 Subject: [PATCH] don't fail when mkdir --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 937341e8..2a89ea42 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ fmt: .PHONY: install-nu install-nu: - mkdir "${NU_DEST}" + mkdir -p "${NU_DEST}" curl -fLo "${NU_DEST}/nu.tar.gz" "https://github.com/nushell/nushell/releases/download/${NU_VERSION}/${NU_BUILD}.tar.gz" tar xvf "${NU_DEST}/nu.tar.gz" --directory "${NU_DEST}" cp "${NU_DEST}/${NU_BUILD}/nu" "${NU_DEST}/nu" -- GitLab