1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

remove a println()

This commit is contained in:
Alexander Medvednikov
2019-10-31 12:15:45 +03:00
parent d5cf4d6fd5
commit b1730b768d
2 changed files with 4 additions and 7 deletions

View File

@ -843,7 +843,6 @@ pub fn new_v(args[]string) &V {
// `v -o dir/exec`, create "dir/" if it doesn't exist
if out_name.contains(os.path_separator) {
d := out_name.all_before_last(os.path_separator)
println('DIRRR ' + d)
if !os.dir_exists(d) {
println('creating a new directory "$d"')
os.mkdir(d)