Add space after commas in command list (#1307)

This commit is contained in:
Fernando Chu
2021-02-28 19:49:21 -05:00
committed by GitHub
parent 1f2e7a3226
commit 4a996fd3b9

View File

@@ -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 = {