99 Hint if the cache location cannot be inferred from the environment |
99 Hint if the cache location cannot be inferred from the environment |
100 |
100 |
101 #if windows |
101 #if windows |
102 $ unset LOCALAPPDATA |
102 $ unset LOCALAPPDATA |
103 $ unset APPDATA |
103 $ unset APPDATA |
104 $ HGRCPATH= hg config lfs --debug |
104 $ HGRCPATH= hg config lfs --source |
105 abort: unknown lfs usercache location |
105 abort: unknown lfs usercache location |
106 (define LOCALAPPDATA or APPDATA in the environment, or set lfs.usercache) |
106 (define LOCALAPPDATA or APPDATA in the environment, or set lfs.usercache) |
107 [255] |
107 [255] |
108 #endif |
108 #endif |
109 |
109 |
110 #if osx |
110 #if osx |
111 $ unset HOME |
111 $ unset HOME |
112 $ HGRCPATH= hg config lfs --debug |
112 $ HGRCPATH= hg config lfs --source |
113 abort: unknown lfs usercache location |
113 abort: unknown lfs usercache location |
114 (define HOME in the environment, or set lfs.usercache) |
114 (define HOME in the environment, or set lfs.usercache) |
115 [255] |
115 [255] |
116 #endif |
116 #endif |
117 |
117 |
118 #if no-windows no-osx |
118 #if no-windows no-osx |
119 $ unset XDG_CACHE_HOME |
119 $ unset XDG_CACHE_HOME |
120 $ unset HOME |
120 $ unset HOME |
121 $ HGRCPATH= hg config lfs --debug |
121 $ HGRCPATH= hg config lfs --source |
122 abort: unknown lfs usercache location |
122 abort: unknown lfs usercache location |
123 (define XDG_CACHE_HOME or HOME in the environment, or set lfs.usercache) |
123 (define XDG_CACHE_HOME or HOME in the environment, or set lfs.usercache) |
124 [255] |
124 [255] |
125 #endif |
125 #endif |
126 |
126 |