Merge pull request #151 from matthiasbeyer/libimagrt/fix-store-path-building
Fix: We dont need the initial / when pushing
This commit is contained in:
commit
1a682859f6
1 changed files with 1 additions and 1 deletions
|
@ -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| {
|
||||
|
|
Loading…
Reference in a new issue