Skip to content

Commit

Permalink
fix so publishing universal docs stops failing
Browse files Browse the repository at this point in the history
  • Loading branch information
mikrostew committed Aug 15, 2018
1 parent 371d87c commit be03608
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/notion-core/src/path/windows.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
//! in a standard Notion layout in Windows operating systems.

use std::path::PathBuf;
use std::os::windows;
use std::os;
use std::io;

use winfolder;
Expand Down Expand Up @@ -158,5 +158,5 @@ pub fn user_catalog_file() -> Fallible<PathBuf> {
}

pub fn create_file_symlink(src: PathBuf, dst: PathBuf) -> Result<(), io::Error> {
windows::fs::symlink_file(src, dst)
os::windows::fs::symlink_file(src, dst)
}

0 comments on commit be03608

Please sign in to comment.