Merge pull request #61 from titanous/patch-1

Fix Windows path escaping in example mount JSON
This commit is contained in:
Brandon Philips 2015-07-09 12:31:37 -06:00
commit 61e5579768
1 changed files with 2 additions and 2 deletions

View File

@ -80,8 +80,8 @@ Additional filesystems can be declared as "mounts", specified in the *mounts* ar
"mounts": [
{
"type": "ntfs",
"source": "\\?\Volume\{2eca078d-5cbc-43d3-aff8-7e8511f60d0e}\",
"destination": "C:\Users\crosbymichael\My Fancy Mount Point\",
"source": "\\\\?\\Volume\\{2eca078d-5cbc-43d3-aff8-7e8511f60d0e}\\",
"destination": "C:\\Users\\crosbymichael\\My Fancy Mount Point\\",
"options": ""
}
]