From 4a996fd3b991f3dbc303cfed7cdc25e0fde34038 Mon Sep 17 00:00:00 2001 From: Fernando Chu Date: Sun, 28 Feb 2021 19:49:21 -0500 Subject: [PATCH] Add space after commas in command list (#1307) --- cli/tauri.js/bin/tauri.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/tauri.js/bin/tauri.js b/cli/tauri.js/bin/tauri.js index a2dc52724..c1a2d8fb5 100755 --- a/cli/tauri.js/bin/tauri.js +++ b/cli/tauri.js/bin/tauri.js @@ -63,7 +63,7 @@ const tauri = function (command) { require(`./tauri-${command}`) } } else { - console.log(`Invalid command ${command}. Use one of ${cmds.join(',')}.`) + console.log(`Invalid command ${command}. Use one of ${cmds.join(', ')}.`) } } module.exports = {