Quellcode durchsuchen

Z991239-385 #comment 优化 spexplorertest.vbs脚本

gifur vor 5 Jahren
Ursprung
Commit
739922031b
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      addin/startup_scripts/spexplorertest.vbs

+ 1 - 1
addin/startup_scripts/spexplorertest.vbs

@@ -7,7 +7,7 @@ Run bin_path
 Sub Run(ByVal sFile)
 Dim shell
 	Set shell = CreateObject("WScript.Shell")
-	shell.Run Chr(34) & sFile & Chr(34), 1, false
+	shell.Run sFile, 1, false
 	Set shell = nothing
 End Sub