Skip to content

Commit

Permalink
New-DbaAgentSchedule - Fix issue with FrequencyInterval Weekdays (dat…
Browse files Browse the repository at this point in the history
  • Loading branch information
andreasjordan authored May 30, 2023
1 parent 87c7ae0 commit 98103a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public/New-DbaAgentSchedule.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ function New-DbaAgentSchedule {
"Friday" { $interval += 6 }
"Saturday" { $interval += 7 }
"Day" { $interval += 8 }
"Weekday" { $interval += 9 }
"Weekdays" { $interval += 9 }
"WeekendDay" { $interval += 10 }
1 { $interval += 1 }
2 { $interval += 2 }
Expand Down

0 comments on commit 98103a5

Please sign in to comment.