feat(apps): python3 by default

This commit is contained in:
fiftin 2024-07-10 23:07:09 +05:00
parent 3a71336278
commit 53bc3d5fdb
No known key found for this signature in database
GPG Key ID: 044381366A5D4731

View File

@ -86,7 +86,7 @@ func (t *ShellApp) makeShellCmd(args []string, environmentVars *[]string) *exec.
case db.TemplateBash:
command = "bash"
case db.TemplatePython:
command = "python"
command = "python3"
case db.TemplatePowerShell:
command = "powershell"
appArgs = []string{"-File"}