We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edc8646 commit eb81387Copy full SHA for eb81387
1 file changed
crates/brioche-autopack/src/lib.rs
@@ -326,7 +326,7 @@ fn autopack_context(config: &AutopackConfig) -> eyre::Result<AutopackContext> {
326
for entry in library_path_env_dir_entries {
327
let entry = entry?;
328
eyre::ensure!(
329
- entry.metadata()?.is_symlink(),
+ entry.file_type()?.is_symlink(),
330
"expected {:?} to be a symlink",
331
entry.path()
332
);
@@ -355,7 +355,7 @@ fn autopack_context(config: &AutopackConfig) -> eyre::Result<AutopackContext> {
355
for entry in path_env_dir_entries {
356
357
358
359
360
361
0 commit comments