You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The artifacts directory may get mounted at a
different path on macOS, so search for a directory
containing ID file names. On Linux, fall back to
/.tangram/artifacts if we hit the root.
- bump deps
- script tweak
// Check if this is a path that should be a template. Needs to happen after canonicalization in case a local symlink was created pointing to an artifact.
481
-
if path.starts_with("/.tangram/artifacts"){
479
+
if artifacts_dir
480
+
.as_ref()
481
+
.is_some_and(|dir| path.starts_with(dir))
482
+
{
482
483
let template = tangram_std::unrender(path.to_str().unwrap())?;
0 commit comments