fix: correct windows script linker require paths

The pathdiff crate doesn't behave properly when
one path begins with a long path prefix
and the other doesn't, so we always put the
prefix on paths.
This commit is contained in:
daimond113 2025-02-09 20:01:20 +01:00
parent 9c75bff65e
commit 8bb8888de8
No known key found for this signature in database
GPG key ID: 640DC95EC1190354
3 changed files with 22 additions and 3 deletions

View file

@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
### Fixed
- Correct script linker require paths on Windows by @daimond113
## [0.6.0-rc.4] - 2025-02-08 ## [0.6.0-rc.4] - 2025-02-08
### Fixed ### Fixed
- Refresh sources before reading package data to ensure the index is even cloned (remote changes to lockfile) by @daimond113 - Refresh sources before reading package data to ensure the index is even cloned (remote changes to lockfile) by @daimond113

View file

@ -130,7 +130,7 @@ pub fn get_lib_require_path(
project_manifest: &Manifest, project_manifest: &Manifest,
) -> Result<String, errors::GetLibRequirePath> { ) -> Result<String, errors::GetLibRequirePath> {
let path = pathdiff::diff_paths(destination_dir, base_dir).unwrap(); let path = pathdiff::diff_paths(destination_dir, base_dir).unwrap();
tracing::debug!("diffed path: {}", path.display()); tracing::debug!("diffed lib path: {}", path.display());
let path = if use_new_structure { let path = if use_new_structure {
lib_file.to_path(path) lib_file.to_path(path)
} else { } else {
@ -208,7 +208,7 @@ pub fn get_bin_require_path(
destination_dir: &Path, destination_dir: &Path,
) -> String { ) -> String {
let path = pathdiff::diff_paths(destination_dir, base_dir).unwrap(); let path = pathdiff::diff_paths(destination_dir, base_dir).unwrap();
tracing::debug!("diffed path: {}", path.display()); tracing::debug!("diffed bin path: {}", path.display());
let path = bin_file.to_path(path); let path = bin_file.to_path(path);
luau_style_path(&path) luau_style_path(&path)
@ -227,7 +227,7 @@ pub fn get_script_require_path(
destination_dir: &Path, destination_dir: &Path,
) -> String { ) -> String {
let path = pathdiff::diff_paths(destination_dir, base_dir).unwrap(); let path = pathdiff::diff_paths(destination_dir, base_dir).unwrap();
tracing::debug!("diffed path: {}", path.display()); tracing::debug!("diffed script path: {}", path.display());
let path = script_file.to_path(path); let path = script_file.to_path(path);
luau_style_path(&path) luau_style_path(&path)

View file

@ -135,8 +135,23 @@ impl<'a> MakeWriter<'a> for IndicatifWriter {
} }
} }
#[cfg(windows)]
fn long_path_prefix(path: PathBuf) -> PathBuf {
if path.starts_with(r"\\?\") {
path
} else {
let mut str = std::ffi::OsString::from(r"\\?\");
str.push(path.into_os_string());
str.into()
}
}
async fn run() -> anyhow::Result<()> { async fn run() -> anyhow::Result<()> {
let cwd = std::env::current_dir().expect("failed to get current working directory"); let cwd = std::env::current_dir().expect("failed to get current working directory");
// pathdiff doesn't work properly when diffing paths with and without long path prefixes
// so, we'll try to use the long path prefix where ever possible
#[cfg(windows)]
let cwd = long_path_prefix(cwd);
// Unix doesn't return the symlinked path, so we need to get it from the 0 argument // Unix doesn't return the symlinked path, so we need to get it from the 0 argument
#[cfg(unix)] #[cfg(unix)]
let current_exe = PathBuf::from(std::env::args_os().next().expect("argument 0 not set")); let current_exe = PathBuf::from(std::env::args_os().next().expect("argument 0 not set"));