File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -70,6 +70,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7070
7171### Fixed
7272
73+ - Fixed activation bug on Windows causing the persistent cache to fail
74+ ([ #700 ] ( https://github.com/fortran-lang/vscode-fortran-support/issues/700 ) )
7375- Fixed bug where the linter's internal cache directory would not always exist
7476 ([ #698 ] ( https://github.com/fortran-lang/vscode-fortran-support/issues/698 ) )
7577- Fixed bugs in relative path resolution for ` fortls `
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ export async function activate(context: vscode.ExtensionContext) {
4848 ) ;
4949 // Linter is always activated but will only lint if compiler !== Disabled
5050 const linterCache = path . join ( context . storageUri . fsPath , 'include' ) ;
51- await vscode . workspace . fs . createDirectory ( vscode . Uri . parse ( linterCache ) ) ;
51+ await vscode . workspace . fs . createDirectory ( vscode . Uri . file ( linterCache ) ) ;
5252 const linter = new FortranLintingProvider ( logger , linterCache ) ;
5353 context . subscriptions . push ( ...( await linter . activate ( ) ) ) ;
5454 vscode . languages . registerCodeActionsProvider ( FortranDocumentSelector ( ) , linter ) ;
You can’t perform that action at this time.
0 commit comments