From 60ec65dc94aa77269985727741d9c469bd0b3813 Mon Sep 17 00:00:00 2001 From: AdrianLongCarleton Date: Mon, 26 Jan 2026 22:08:33 -0500 Subject: [PATCH] Fixed raven build to build from anywhere inside of a raven project. --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index f672301..30d18e5 100644 --- a/src/main.rs +++ b/src/main.rs @@ -185,7 +185,7 @@ fn new(project_name: String) -> anyhow::Result<()> { } fn build() -> anyhow::Result<()> { - let mut targets: Vec = crate::fs::expand_files(DIR_SRC.as_path())? + let mut targets: Vec = crate::fs::expand_files(PROJECT_ROOT.clone().join(DIR_SRC.as_path()))? .into_iter() .filter(|f| { f.extension()