mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
scanner: fix vmod_file on windows
This commit is contained in:
parent
6f7628cb67
commit
23c0bb600c
@ -783,7 +783,11 @@ pub fn (mut s Scanner) scan() token.Token {
|
||||
s.error('@VMOD_FILE can be used only in projects, that have v.mod file')
|
||||
}
|
||||
vmod_content := os.read_file(vmod_file_location.vmod_file) or {''}
|
||||
s.vmod_file_content = vmod_content
|
||||
$if windows {
|
||||
s.vmod_file_content = vmod_content.replace('\r\n', '\n')
|
||||
} $else {
|
||||
s.vmod_file_content = vmod_content
|
||||
}
|
||||
}
|
||||
return s.new_token(.string, s.vmod_file_content, 10)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user