fix: sh and cmd use absolute path

feat/muzan
Evan Chen 2021-11-12 14:49:15 +08:00
parent 69ad2a961c
commit 3327182dc0
1 changed files with 2 additions and 2 deletions

View File

@ -16,8 +16,8 @@ import (
"kumoly.io/tools/configui/public"
)
var UNIX_SHELL = "sh"
var WIN_SHELL = "cmd"
var UNIX_SHELL = "/usr/bin/sh"
var WIN_SHELL = "C:\\Windows\\System32\\cmd"
const version = "v0.1.11"