From 2957541e482d814452bdab9366a77d919d7b40a6 Mon Sep 17 00:00:00 2001 From: Larpon Date: Wed, 25 Nov 2020 20:44:26 +0100 Subject: [PATCH] pref: fix message on inferred run (#6947) --- vlib/v/pref/pref.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/v/pref/pref.v b/vlib/v/pref/pref.v index 195254dc6b..d2386e2d60 100644 --- a/vlib/v/pref/pref.v +++ b/vlib/v/pref/pref.v @@ -450,7 +450,7 @@ pub fn parse_args(args []string) (&Preferences, string) { must_exist(res.path) if !res.path.ends_with('.v') && os.is_executable(res.path) && os.is_file(res.path) && os.is_file(res.path + '.v') { - eprintln('It looks like you wanted to run `v $res.path`, so we went ahead and did that since "$res.path" is an executable.') + eprintln('It looks like you wanted to run "${res.path}.v", so we went ahead and did that since "$res.path" is an executable.') res.path += '.v' } }