From 65ab82d163030ba932373d6a9dd99482f2df4734 Mon Sep 17 00:00:00 2001 From: Stefan Date: Thu, 1 Jan 2026 22:23:54 +0100 Subject: [PATCH] Updated start.ps1 script Signed-off-by: Stefan --- start.ps1 | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/start.ps1 b/start.ps1 index e3b6b71..cba9d1b 100644 --- a/start.ps1 +++ b/start.ps1 @@ -8,14 +8,14 @@ if (-not (Test-Path -Path "..\artifacts")) { if ($null -eq $portInUse) { Write-Host "Nothing is running on port 15400. Starting the process..." - java -jar "..\File-Integrity-Scanner\File-Integrity-Scanner\target\File-Integrity-Scanner-1.8.1.jar" & + java -jar "..\File-Integrity-Scanner\File-Integrity-Scanner\target\File-Integrity-Scanner-1.8.3.jar" & Write-Host "File-Integrity-Scanner started." - cp .\target\integrity_hash-1.2-jar-with-dependencies.jar ..\artifacts - java -jar ..\artifacts\integrity_hash-1.2-jar-with-dependencies.jar + cp .\target\integrity_hash-1.2.1-jar-with-dependencies.jar ..\artifacts + java -jar ..\artifacts\integrity_hash-1.2.1-jar-with-dependencies.jar exit } else { Write-Host "File-Integrity-Scanner is already running on port 15400." - cp .\target\integrity_hash-1.2-jar-with-dependencies.jar ..\artifacts - java -jar ..\artifacts\integrity_hash-1.2-jar-with-dependencies.jar + cp .\target\integrity_hash-1.2.1-jar-with-dependencies.jar ..\artifacts + java -jar ..\artifacts\integrity_hash-1.2.1-jar-with-dependencies.jar exit }