(newPath: string)
| 139 | } |
| 140 | |
| 141 | function changeConfigPath (newPath: string) { |
| 142 | log ('The config file now will be loaded from: ', newPath); |
| 143 | const currentConfig = loadMainConfigFile (); |
| 144 | currentConfig['cachePath'] = newPath; |
| 145 | saveConfigFile (currentConfig); |
| 146 | } |
| 147 | |
| 148 | function getChartsFolder () { |
| 149 | const cachePath = getCacheDirectory (); |
no test coverage detected
searching dependent graphs…