Skip to content
Closed

Fix rm #37706

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ function hasChanges(
);

// delete tarball and restore package.json changes
rm({cwd: packageAbsolutePath}, localTarballName);
rm(path.join(packageAbsolutePath, localTarballName));
restore(packageAbsolutePath);

return diff.trim().length !== 0;
Expand Down