From 68ed555e91cc9520e49b041721bb9422365b360e Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Thu, 4 Jul 2019 02:21:27 +0200 Subject: [PATCH] V 0.1.12 --- compiler/main.v | 2 +- vlib/os/os.v | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/compiler/main.v b/compiler/main.v index 5d6994d329..7337f4ac74 100644 --- a/compiler/main.v +++ b/compiler/main.v @@ -8,7 +8,7 @@ import os import time const ( - Version = '0.1.11' + Version = '0.1.12' ) enum BuildMode { diff --git a/vlib/os/os.v b/vlib/os/os.v index cb48644593..a7b56fcea2 100644 --- a/vlib/os/os.v +++ b/vlib/os/os.v @@ -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 {