From 296a6095a4e05f9d11345535185a16671353d8b2 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Sat, 24 Oct 2020 15:48:05 +0300 Subject: [PATCH] builder: vfmt compile.v --- vlib/v/builder/compile.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/v/builder/compile.v b/vlib/v/builder/compile.v index 006c8a88eb..5aaa507dc0 100644 --- a/vlib/v/builder/compile.v +++ b/vlib/v/builder/compile.v @@ -25,7 +25,7 @@ fn get_vtmp_folder() string { fn get_vtmp_filename(base_file_name string, postfix string) string { vtmp := get_vtmp_folder() uniq := rand.u64() - return os.real_path(os.join_path(vtmp, os.file_name(os.real_path(base_file_name)) + '.${uniq}${postfix}')) + return os.real_path(os.join_path(vtmp, os.file_name(os.real_path(base_file_name)) + '.$uniq$postfix')) } pub fn compile(command string, pref &pref.Preferences) {