Skip to content

Commit

Permalink
fix relative path issue in CloudDirectoryInfo
Browse files Browse the repository at this point in the history
  • Loading branch information
eiriktsarpalis committed Dec 2, 2015
1 parent 6aafa5f commit ca4ee53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/MBrace.Core/Store/CloudFileStore.fs
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ type CloudDirectoryInfo =
/// </summary>
/// <param name="store">Serializable CloudFileStore implementation.</param>
/// <param name="path">Path to directory.</param>
new (store : ICloudFileStore, path : string) = { store = store ; path = path }
new (store : ICloudFileStore, path : string) = { store = store ; path = store.GetFullPath path }

/// Gets a unique store identifier
member d.StoreId = d.store.Id
Expand Down

0 comments on commit ca4ee53

Please sign in to comment.