Skip to content

Commit 1d960c7

Browse files
committed
fix: better error message for using the script as a dep
Signed-off-by: Rustin170506 <[email protected]>
1 parent 1514c7e commit 1d960c7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/cargo/core/source_id.rs

+3
Original file line numberDiff line numberDiff line change
@@ -393,6 +393,9 @@ impl SourceId {
393393
.url
394394
.to_file_path()
395395
.expect("path sources cannot be remote");
396+
if crate::util::toml::is_embedded(&path) {
397+
anyhow::bail!("The embedded script cannot be used as a dependency");
398+
}
396399
Ok(Box::new(PathSource::new(&path, self, gctx)))
397400
}
398401
SourceKind::Registry | SourceKind::SparseRegistry => Ok(Box::new(

tests/testsuite/script.rs

+1-4
Original file line numberDiff line numberDiff line change
@@ -1402,10 +1402,7 @@ Caused by:
14021402
Unable to update [ROOT]/foo/script.rs
14031403
14041404
Caused by:
1405-
failed to read `[ROOT]/foo/script.rs/Cargo.toml`
1406-
1407-
Caused by:
1408-
Not a directory (os error 20)
1405+
The embedded script cannot be used as a dependency
14091406
14101407
"#]])
14111408
.run();

0 commit comments

Comments
 (0)