mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 22:11:48 +08:00
Fix variable expansion in external tool filenames.
This commit is contained in:
@@ -29,7 +29,7 @@ Namespace Connection
|
||||
|
||||
With _process.StartInfo
|
||||
.UseShellExecute = True
|
||||
.FileName = _externalTool.FileName
|
||||
.FileName = _externalTool.ParseArguments(_externalTool.FileName)
|
||||
.Arguments = _externalTool.ParseArguments(_externalTool.Arguments)
|
||||
End With
|
||||
|
||||
|
||||
@@ -57,7 +57,7 @@ Namespace Tools
|
||||
Dim process As New Process()
|
||||
With process.StartInfo
|
||||
.UseShellExecute = True
|
||||
.FileName = FileName
|
||||
.FileName = ParseArguments(FileName)
|
||||
.Arguments = ParseArguments(Arguments)
|
||||
End With
|
||||
|
||||
|
||||
Reference in New Issue
Block a user