Make the cmd launcher "silent" and not stick around(fix for win10)
This commit is contained in:
parent
a59cf9b9aa
commit
71ac8ff996
1 changed files with 2 additions and 2 deletions
|
@ -139,10 +139,10 @@ class ActionsPlugin(object):
|
||||||
|
|
||||||
return u"""
|
return u"""
|
||||||
@echo off
|
@echo off
|
||||||
chcp 65001
|
chcp 65001 > nul
|
||||||
set PYTHONIOENCODING=utf-8
|
set PYTHONIOENCODING=utf-8
|
||||||
cd /D \"%s\"
|
cd /D \"%s\"
|
||||||
%s
|
start "" %s
|
||||||
""" % (cwd, cmd)
|
""" % (cwd, cmd)
|
||||||
|
|
||||||
def isAutorunEnabled(self):
|
def isAutorunEnabled(self):
|
||||||
|
|
Loading…
Reference in a new issue