Navigation Menu

Skip to content

Commit

Permalink
builder: vfmt compile.v
Browse files Browse the repository at this point in the history
  • Loading branch information
spytheman committed Oct 24, 2020
1 parent 8f85396 commit 296a609
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vlib/v/builder/compile.v
Expand Up @@ -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) {
Expand Down

0 comments on commit 296a609

Please sign in to comment.