Skip to content

Commit

Permalink
fix beep on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
xxnet committed May 2, 2016
1 parent 6efed06 commit bca1e8b
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion start.vbs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,14 @@ strCurrentPath = CurrentPath()
strVersion = CurrentVersion()
Dim strArgs
quo = """"
strExecutable = quo & strCurrentPath & "\code\" & strVersion & "\python27\1.0\python.exe" & quo

If isConsole() Then
python_cmd = "python.exe"
Else
python_cmd = "pythonw.exe"
End If

strExecutable = quo & strCurrentPath & "\code\" & strVersion & "\python27\1.0\" & python_cmd & quo
strArgs = strExecutable & " " & quo & strCurrentPath & "\code\" & strVersion & "\launcher\start.py" & quo
'WScript.Echo strArgs

Expand Down

0 comments on commit bca1e8b

Please sign in to comment.