From b27237f709b55a103c33b65c0222a2affe26c2e6 Mon Sep 17 00:00:00 2001 From: Bauke Date: Thu, 29 Feb 2024 14:10:10 +0100 Subject: [PATCH] Remove rust from the output path. --- interlinked/source/cli/run.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interlinked/source/cli/run.rs b/interlinked/source/cli/run.rs index 348b7dd..207fd09 100644 --- a/interlinked/source/cli/run.rs +++ b/interlinked/source/cli/run.rs @@ -24,7 +24,7 @@ pub fn run() -> Result<()> { all_projects().into_iter().collect() }; - let base_out_dir = Path::new("output/rust/"); + let base_out_dir = Path::new("output/"); for project in projects { let start = Instant::now(); let (width, height) = project.resolution;