diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-07-26 11:35:29 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-26 15:35:29 +0000 |
commit | bee16c54abada37b98808b5ef85be534fb3b7ea9 (patch) | |
tree | 920e2a3049f166402bed177456d4c35e2b94702f /cli/tools/registry/paths.rs | |
parent | 7776636c2efc3db07b965166a9982fc3d5ef21ce (diff) |
fix(publish): workspace included license file had incorrect path (#24747)
Also fixes the issue where we say a package was successfully published
before it wasn't.
Bug in https://github.com/denoland/deno/pull/24714
Diffstat (limited to 'cli/tools/registry/paths.rs')
-rw-r--r-- | cli/tools/registry/paths.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tools/registry/paths.rs b/cli/tools/registry/paths.rs index 5943e0cbb..8b6c05fc0 100644 --- a/cli/tools/registry/paths.rs +++ b/cli/tools/registry/paths.rs @@ -214,7 +214,7 @@ pub enum PackagePathValidationError { pub struct CollectedPublishPath { pub specifier: ModuleSpecifier, pub path: PathBuf, - /// Relative path to use in the tarball. + /// Relative path to use in the tarball. This should be prefixed with a `/`. pub relative_path: String, /// Specify the contents for any injected paths. pub maybe_content: Option<Vec<u8>>, |