diff --git a/antlir/antlir2/antlir2_compile/src/lib.rs b/antlir/antlir2/antlir2_compile/src/lib.rs index 5485117d2e2..14defb8437b 100644 --- a/antlir/antlir2/antlir2_compile/src/lib.rs +++ b/antlir/antlir2/antlir2_compile/src/lib.rs @@ -202,6 +202,8 @@ impl CompilerContext { { if !path.as_ref().is_absolute() { self.root.join(path) + } else if path.as_ref().starts_with(&self.root) { + path.as_ref().to_path_buf() } else { self.root .join(path.as_ref().strip_prefix("/").expect("infallible"))