Skip to content

Commit 7a6c352

Browse files
committed
Fixed syntax
1 parent b345b03 commit 7a6c352

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

.github/workflows/windows.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -134,17 +134,17 @@ jobs:
134134
135135
# Create launcher.vbs (no console)
136136
$vbs = @'
137-
Set oShell = CreateObject("WScript.Shell")
138-
Set env = oShell.Environment("PROCESS")
139-
Set fso = CreateObject("Scripting.FileSystemObject")
140-
appDir = fso.GetAbsolutePathName(".")
141-
env("PATH") = appDir & "\\gtk\\bin;" & appDir & "\\python;" & env("PATH")
142-
env("PYTHONHOME") = appDir & "\\python"
143-
env("PYTHONPATH") = appDir & "\\lib\\python3.12\\site-packages"
144-
env("GI_TYPELIB_PATH") = appDir & "\\gtk\\lib\\girepository-1.0"
145-
env("XDG_DATA_DIRS") = appDir & "\\share;" & appDir & "\\gtk\\share"
146-
oShell.Run '"' & appDir & "\\python\\pythonw.exe" & '" -m ssh_studio.main', 0
147-
'@
137+
Set oShell = CreateObject("WScript.Shell")
138+
Set env = oShell.Environment("PROCESS")
139+
Set fso = CreateObject("Scripting.FileSystemObject")
140+
appDir = fso.GetAbsolutePathName(".")
141+
env("PATH") = appDir & "\\gtk\\bin;" & appDir & "\\python;" & env("PATH")
142+
env("PYTHONHOME") = appDir & "\\python"
143+
env("PYTHONPATH") = appDir & "\\lib\\python3.12\\site-packages"
144+
env("GI_TYPELIB_PATH") = appDir & "\\gtk\\lib\\girepository-1.0"
145+
env("XDG_DATA_DIRS") = appDir & "\\share;" & appDir & "\\gtk\\share"
146+
oShell.Run '"' & appDir & "\\python\\pythonw.exe" & '" -m ssh_studio.main', 0
147+
'@
148148
Set-Content -Encoding ASCII -Path "$stage\launcher.vbs" -Value $vbs
149149
150150
- name: Download Inno Setup

0 commit comments

Comments
 (0)