Skip to content

Commit

Permalink
Windows - source_packages_install.ps1 - try fixing CI errors
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-revay authored Oct 11, 2023
1 parent 00f8a4d commit ba3f44c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Windows_10/source_packages_install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ $config = @"

echo $config | Out-File -Encoding ASCII -FilePath ./dist/config.json

( $res = Get-ScheduledTask "Taskbar_scroll" ) 2> $null
( $res = Get-ScheduledTask "Taskbar_scroll" -ErrorAction SilentlyContinue ) 2> $null
if ($res -eq $null) {
$exe_dir = "$PWD\dist"
$action = New-ScheduledTaskAction -Execute "$exe_dir\scroll-desktops.exe" `
Expand Down

0 comments on commit ba3f44c

Please sign in to comment.