mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
os: tmpdir => temp_dir
This commit is contained in:
@ -6,7 +6,7 @@ module compiler
|
||||
import os
|
||||
|
||||
fn get_vtmp_folder() string {
|
||||
vtmp := os.join_path(os.tmpdir(), 'v')
|
||||
vtmp := os.join_path(os.temp_dir(), 'v')
|
||||
if !os.is_dir(vtmp) {
|
||||
os.mkdir(vtmp) or {
|
||||
panic(err)
|
||||
|
Reference in New Issue
Block a user