From 1661f179d0b38a78362e10ac29230db906955e8e Mon Sep 17 00:00:00 2001 From: Ethan Reece Date: Sun, 22 Sep 2024 01:17:31 -0500 Subject: [PATCH] Don't create output directory if already exists --- Justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Justfile b/Justfile index 5eec784..3294ea7 100644 --- a/Justfile +++ b/Justfile @@ -1,5 +1,5 @@ default: - guix time-machine --channels=./channels.scm.lock -- shell --container --emulate-fhs --manifest=./manifest.scm -- sh -c "mkdir ./out && typst compile ./src/document.typ ./out/document.pdf --font-path=/usr/share/fonts" + guix time-machine --channels=./channels.scm.lock -- shell --container --emulate-fhs --manifest=./manifest.scm -- sh -c "mkdir -p ./out && typst compile ./src/document.typ ./out/document.pdf --font-path=/usr/share/fonts" fonts: guix time-machine --channels=./channels.scm.lock -- shell --container --emulate-fhs --manifest=./manifest.scm -- typst fonts --font-path=/usr/share/fonts