Fork of daniellemaywood.uk/gleam — Wasm codegen work
2

Configure Feed

Select the types of activity you want to include in your feed.

few fixes after conflict

this conflict was so hard to resolve, idk what's wrong with it

author
Andrey
committer
Louis Pilfold
date (Jun 22, 2026, 3:19 PM +0100) commit a53257d3 parent 54ac2de4 change-id nzsxvxno
+3 -4
+2 -3
compiler-cli/src/fs.rs
··· 704 704 let dest = dest.as_ref(); 705 705 tracing::debug!(src=?src, dest=?dest, "symlinking"); 706 706 let src = canonicalise(src)?; 707 - let src = src.as_path(); 708 707 709 708 #[cfg(target_family = "windows")] 710 - let result = std::os::windows::fs::symlink_dir(src, dest); 709 + let result = std::os::windows::fs::symlink_dir(&src, dest); 711 710 #[cfg(not(target_family = "windows"))] 712 - let result = std::os::unix::fs::symlink(src, dest); 711 + let result = std::os::unix::fs::symlink(&src, dest); 713 712 714 713 result.map_err(|err| Error::FileIo { 715 714 action: FileIoAction::Link(dest.to_path_buf()),
+1 -1
compiler-core/src/error/tests.rs
··· 70 70 fn io_copy_directory_error() { 71 71 let error = Error::FileIo { 72 72 kind: FileKind::Directory, 73 - action: FileIoAction::Copy("/dest".into()), 73 + action: FileIoAction::Copy(Some("/dest".into())), 74 74 path: "/src".into(), 75 75 err: Some("Critical error!".to_owned()), 76 76 }