1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
This commit is contained in:
Alexander Medvednikov 2019-07-04 02:21:27 +02:00
parent 4d9c6197fd
commit 68ed555e91
2 changed files with 1 additions and 2 deletions

View File

@ -8,7 +8,7 @@ import os
import time
const (
Version = '0.1.11'
Version = '0.1.12'
)
enum BuildMode {

View File

@ -346,7 +346,6 @@ pub fn file_exists(path string) bool {
pub fn dir_exists(path string) bool {
$if windows {
attr := int(C.GetFileAttributes(path.cstr()))
println('ATTR =$attr')
return attr == FILE_ATTRIBUTE_DIRECTORY
}
$else {