Skip to content

Commit

Permalink
Correct working directory for Citrix environment shortcut
Browse files Browse the repository at this point in the history
  • Loading branch information
mschabhuettl authored Mar 18, 2024
1 parent 5b52647 commit cfc644a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
$WScriptShell = New-Object -ComObject WScript.Shell
$Shortcut = $WScriptShell.CreateShortcut("$env:GITHUB_WORKSPACE\CitrixStartSP5ToICalExp.lnk")
$Shortcut.TargetPath = "C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe"
$Shortcut.Arguments = "-ExecutionPolicy Bypass -NoExit -Command `"Start-Process '$env:GITHUB_WORKSPACE\SP5ToICalExp.exe' -WorkingDirectory '$env:GITHUB_WORKSPACE'`""
$Shortcut.Arguments = "-ExecutionPolicy Bypass -NoExit -Command `"Start-Process '.\SP5ToICalExp.exe' -WorkingDirectory '.\'`""
$Shortcut.Save()
shell: pwsh
if: runner.os == 'Windows'
Expand Down

0 comments on commit cfc644a

Please sign in to comment.