From 3deedb2f7fc62b865af27eed9226984d2438b88a 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 d6409d9..6981bd5 100644 --- a/src/main.rs +++ b/src/main.rs @@ -186,7 +186,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()