From 3e6a1f4ed1a97650520cf06c370e1eed99f04c3b Mon Sep 17 00:00:00 2001 From: Lanta <43404397+OpzekerIT@users.noreply.github.com> Date: Sat, 30 Sep 2023 10:25:33 +0200 Subject: [PATCH 1/2] Update report_new_matches.ps1 --- discord/report_new_matches.ps1 | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/discord/report_new_matches.ps1 b/discord/report_new_matches.ps1 index a996bed..c4de6c9 100644 --- a/discord/report_new_matches.ps1 +++ b/discord/report_new_matches.ps1 @@ -1,3 +1,6 @@ +. .\..\includes\ps1\lockfile.ps1 + +new-lock if ($PSScriptRoot.length -eq 0) { $scriptroot = Get-Location @@ -151,3 +154,5 @@ $newJson = $player_matches | ConvertTo-Json -Depth 100 # Display the updated JSON $newJson | out-file "$scriptroot/../data/player_matches.json" + +remove-lock \ No newline at end of file -- 2.49.1 From d097609b73cf837dfb3b8ea3b151ce0a910bbacf Mon Sep 17 00:00:00 2001 From: Lanta <43404397+OpzekerIT@users.noreply.github.com> Date: Sat, 30 Sep 2023 10:26:03 +0200 Subject: [PATCH 2/2] Update report_to_discord.ps1 --- discord/report_to_discord.ps1 | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/discord/report_to_discord.ps1 b/discord/report_to_discord.ps1 index c246261..d4e2f11 100644 --- a/discord/report_to_discord.ps1 +++ b/discord/report_to_discord.ps1 @@ -1,4 +1,7 @@ +. .\..\includes\ps1\lockfile.ps1 + +new-lock if ($PSScriptRoot.length -eq 0) { $scriptroot = Get-Location @@ -98,4 +101,5 @@ $payload = [PSCustomObject]@{ } -Invoke-RestMethod -Uri $webhookurl -Method Post -Body ($payload | ConvertTo-Json) -ContentType 'Application/Json' \ No newline at end of file +Invoke-RestMethod -Uri $webhookurl -Method Post -Body ($payload | ConvertTo-Json) -ContentType 'Application/Json' +remove-lock \ No newline at end of file -- 2.49.1