blob: c8da1e9719448665c3f4c32e13011b8440c98529 [file] [log] [blame]
James Kuszmaul1cd3c2b2024-05-21 17:08:10 -07001use std::path::{Path, PathBuf};
2
3/// Returns the correct path for a data file within AOS, accounting for whether AOS is
4/// imported as an external repository.
5pub fn artifact_path(path: &Path) -> PathBuf {
6 Path::new("..")
7 .join(Path::new(env!("AOS_REPO_NAME")))
8 .join(path)
9}