Merge pull request #151 from matthiasbeyer/libimagrt/fix-store-path-building

Fix: We dont need the initial / when pushing
This commit is contained in:
Matthias Beyer 2016-01-28 20:40:53 +01:00
commit 1a682859f6

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| {