Fix #131 where src and dest paths were not prefixed with the root directory if it was not the current directory
This commit is contained in:
parent
10e7a41d92
commit
876ea7895a
|
@ -23,8 +23,8 @@ impl BookConfig {
|
||||||
author: String::new(),
|
author: String::new(),
|
||||||
description: String::new(),
|
description: String::new(),
|
||||||
root: root.to_owned(),
|
root: root.to_owned(),
|
||||||
dest: PathBuf::from("book"),
|
dest: root.join("book"),
|
||||||
src: PathBuf::from("src"),
|
src: root.join("src"),
|
||||||
indent_spaces: 4, // indentation used for SUMMARY.md
|
indent_spaces: 4, // indentation used for SUMMARY.md
|
||||||
multilingual: false,
|
multilingual: false,
|
||||||
}
|
}
|
||||||
|
|
|
@ -43,8 +43,8 @@ impl MDBook {
|
||||||
|
|
||||||
MDBook {
|
MDBook {
|
||||||
root: root.to_owned(),
|
root: root.to_owned(),
|
||||||
dest: PathBuf::from("book"),
|
dest: root.join("book"),
|
||||||
src: PathBuf::from("src"),
|
src: root.join("src"),
|
||||||
|
|
||||||
title: String::new(),
|
title: String::new(),
|
||||||
author: String::new(),
|
author: String::new(),
|
||||||
|
@ -151,7 +151,8 @@ impl MDBook {
|
||||||
debug!("[*]: item: {:?}", item);
|
debug!("[*]: item: {:?}", item);
|
||||||
match *item {
|
match *item {
|
||||||
BookItem::Spacer => continue,
|
BookItem::Spacer => continue,
|
||||||
BookItem::Chapter(_, ref ch) | BookItem::Affix(ref ch) => {
|
BookItem::Chapter(_, ref ch) |
|
||||||
|
BookItem::Affix(ref ch) => {
|
||||||
if ch.path != PathBuf::new() {
|
if ch.path != PathBuf::new() {
|
||||||
let path = self.src.join(&ch.path);
|
let path = self.src.join(&ch.path);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue