Skip to content

Commit

Permalink
ansible,win: fix temurin17 update breaking jenkins
Browse files Browse the repository at this point in the history
fixes: #3548
  • Loading branch information
StefanStojanovic committed Nov 14, 2023
1 parent b0675c5 commit 588be8c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ $DesktopLnk = "$env:USERPROFILE\Desktop\Jenkins.lnk"
$StartupLnk = "$env:APPDATA\Microsoft\Windows\Start Menu\Programs\Startup\Jenkins.lnk"

$Shortcut = $WshShell.CreateShortcut($DesktopLnk)
$Shortcut.Arguments = "/c C:\jenkins.bat"
$Shortcut.Arguments = "/c C:\jenkins.bat < nul"
$Shortcut.Description = "Runs the Jenkins agent"
$Shortcut.IconLocation = "C:\jenkins.ico,0"
$Shortcut.TargetPath = "%windir%\system32\cmd.exe"
Expand Down

0 comments on commit 588be8c

Please sign in to comment.