mirror of
https://github.com/martinvonz/jj.git
synced 2025-01-18 18:27:38 +00:00
working_copy: print warning about ignored symlinks instead of failing build
The project doesn't currently build on Windows. One reason is because we had a `unimplemented!()` when trying to write a symlink. Let's print a warning instead, so the project can start building on Windows. (The next patch will fix another build problem on Windows.)
This commit is contained in:
parent
e0112a4be0
commit
3d679de022
1 changed files with 1 additions and 1 deletions
|
@ -381,7 +381,7 @@ impl TreeState {
|
||||||
create_parent_dirs(disk_path);
|
create_parent_dirs(disk_path);
|
||||||
#[cfg(windows)]
|
#[cfg(windows)]
|
||||||
{
|
{
|
||||||
unimplemented!();
|
println!("ignoring symlink at {:?}", path);
|
||||||
}
|
}
|
||||||
#[cfg(not(windows))]
|
#[cfg(not(windows))]
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue