Fix: We dont need the initial / when pushing

This commit is contained in:
Matthias Beyer 2016-01-28 20:05:43 +01:00
parent 7f63b82de1
commit 4c0903c718
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ impl<'a> Runtime<'a> {
.map(PathBuf::from)
.unwrap_or({
let mut spath = rtp.clone();
spath.push("/store");
spath.push("store");
spath
});
Store::new(storepath).map(|store| {