Skip to content

Commit

Permalink
V 0.1.12
Browse files Browse the repository at this point in the history
  • Loading branch information
medvednikov committed Jul 4, 2019
1 parent 4d9c619 commit 68ed555
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion compiler/main.v
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import os
import time

const (
Version = '0.1.11'
Version = '0.1.12'
)

enum BuildMode {
Expand Down
1 change: 0 additions & 1 deletion vlib/os/os.v
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 68ed555

Please sign in to comment.