File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
4
4
5
5
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
6
6
7
+ ## [ unreleased]
8
+
9
+ ### Fixed
10
+
11
+ - Fix [ #428 ] ( https://github.com/mshr-h/vscode-verilog-hdl-support/issues/428 )
12
+
13
+
14
+
7
15
## [ 1.11.10] - 2023-06-12
8
16
9
17
### Fixed
Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ export default class VerilatorLinter extends BaseLinter {
78
78
: path . dirname ( doc . uri . fsPath ) ;
79
79
let cwd : string = this . runAtFileLocation
80
80
? isWindows
81
- ? path . dirname ( docUri )
81
+ ? path . dirname ( doc . uri . fsPath . replace ( / \\ / g , '/' ) )
82
82
: docFolder
83
83
: vscode . workspace . workspaceFolders [ 0 ] . uri . fsPath ;
84
84
let verilator : string = isWindows
You can’t perform that action at this time.
0 commit comments