1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00

fix(install): Use relative symlinks in deno install (#25164)

Fixes https://github.com/denoland/deno/issues/25161
This commit is contained in:
Nathan Whitaker 2024-08-22 14:55:17 -07:00 committed by GitHub
parent b6475d0f36
commit f606402677
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 70 additions and 25 deletions

View file

@ -1048,42 +1048,50 @@ fn symlink_package_dir(
// need to delete the previous symlink before creating a new one // need to delete the previous symlink before creating a new one
let _ignore = fs::remove_dir_all(new_path); let _ignore = fs::remove_dir_all(new_path);
let old_path_relative =
crate::util::path::relative_path(new_parent, old_path)
.unwrap_or_else(|| old_path.to_path_buf());
#[cfg(windows)] #[cfg(windows)]
return junction_or_symlink_dir(old_path, new_path); {
junction_or_symlink_dir(&old_path_relative, old_path, new_path)
}
#[cfg(not(windows))] #[cfg(not(windows))]
symlink_dir(old_path, new_path) {
symlink_dir(&old_path_relative, new_path).map_err(Into::into)
}
} }
#[cfg(windows)] #[cfg(windows)]
fn junction_or_symlink_dir( fn junction_or_symlink_dir(
old_path_relative: &Path,
old_path: &Path, old_path: &Path,
new_path: &Path, new_path: &Path,
) -> Result<(), AnyError> { ) -> Result<(), AnyError> {
use deno_core::anyhow::bail; static USE_JUNCTIONS: std::sync::atomic::AtomicBool =
// Use junctions because they're supported on ntfs file systems without std::sync::atomic::AtomicBool::new(false);
// needing to elevate privileges on Windows
match junction::create(old_path, new_path) { if USE_JUNCTIONS.load(std::sync::atomic::Ordering::Relaxed) {
// Use junctions because they're supported on ntfs file systems without
// needing to elevate privileges on Windows.
// Note: junctions don't support relative paths, so we need to use the
// absolute path here.
return junction::create(old_path, new_path)
.context("Failed creating junction in node_modules folder");
}
match symlink_dir(old_path_relative, new_path) {
Ok(()) => Ok(()), Ok(()) => Ok(()),
Err(junction_err) => { Err(symlink_err)
if cfg!(debug_assertions) { if symlink_err.kind() == std::io::ErrorKind::PermissionDenied =>
// When running the tests, junctions should be created, but if not then {
// surface this error. USE_JUNCTIONS.store(true, std::sync::atomic::Ordering::Relaxed);
log::warn!("Error creating junction. {:#}", junction_err); junction::create(old_path, new_path).map_err(Into::into)
}
match symlink_dir(old_path, new_path) {
Ok(()) => Ok(()),
Err(symlink_err) => bail!(
concat!(
"Failed creating junction and fallback symlink in node_modules folder.\n\n",
"{:#}\n\n{:#}",
),
junction_err,
symlink_err,
),
}
} }
Err(symlink_err) => Err(
AnyError::from(symlink_err)
.context("Failed creating symlink in node_modules folder"),
),
} }
} }

View file

@ -509,7 +509,7 @@ pub fn hard_link_dir_recursive(from: &Path, to: &Path) -> Result<(), AnyError> {
Ok(()) Ok(())
} }
pub fn symlink_dir(oldpath: &Path, newpath: &Path) -> Result<(), AnyError> { pub fn symlink_dir(oldpath: &Path, newpath: &Path) -> Result<(), Error> {
let err_mapper = |err: Error| { let err_mapper = |err: Error| {
Error::new( Error::new(
err.kind(), err.kind(),

View file

@ -0,0 +1,28 @@
{
"tempDir": true,
"envs": {
"DENO_FUTURE": "1"
},
"steps": [
{
"cwd": "./test-project",
"args": "install",
"output": "[WILDCARD]"
},
{
"cwd": "./test-project",
"args": "run -A main.mjs",
"output": "5\n"
},
{
"commandName": "mv",
"args": "test-project test-project-moved",
"output": ""
},
{
"cwd": "./test-project-moved",
"args": "run -A main.mjs",
"output": "5\n"
}
]
}

View file

@ -0,0 +1,4 @@
import { getValue, setValue } from "@denotest/esm-basic";
setValue(5);
console.log(getValue());

View file

@ -0,0 +1,5 @@
{
"dependencies": {
"@denotest/esm-basic": "*"
}
}