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/).
70
70
71
71
### Fixed
72
72
73
+ - Fixed activation bug on Windows causing the persistent cache to fail
74
+ ([ #700 ] ( https://github.com/fortran-lang/vscode-fortran-support/issues/700 ) )
73
75
- Fixed bug where the linter's internal cache directory would not always exist
74
76
([ #698 ] ( https://github.com/fortran-lang/vscode-fortran-support/issues/698 ) )
75
77
- 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) {
48
48
) ;
49
49
// Linter is always activated but will only lint if compiler !== Disabled
50
50
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 ) ) ;
52
52
const linter = new FortranLintingProvider ( logger , linterCache ) ;
53
53
context . subscriptions . push ( ...( await linter . activate ( ) ) ) ;
54
54
vscode . languages . registerCodeActionsProvider ( FortranDocumentSelector ( ) , linter ) ;
You can’t perform that action at this time.
0 commit comments