From 090cdcf3b922a18c788ae384d96095da18b6ea03 Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Tue, 16 Jul 2019 01:59:28 +0200 Subject: [PATCH] os: fix PathSeparator on Windows --- vlib/os/os_win.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/os/os_win.v b/vlib/os/os_win.v index 03026ac061..03cee049be 100644 --- a/vlib/os/os_win.v +++ b/vlib/os/os_win.v @@ -1,7 +1,7 @@ module os const ( - PathSeparator = '/' + PathSeparator = '\\' ) // Ref - https://docs.microsoft.com/en-us/windows/desktop/winprog/windows-data-types