From 39bbfb03209d749f33ebc5df5fcd737d16f34cdd Mon Sep 17 00:00:00 2001 From: Samuele Locatelli Date: Thu, 15 Apr 2021 20:11:54 +0200 Subject: [PATCH] fix hash path --- .gitlab-ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f75e7e7..b9b4ae4 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -59,10 +59,10 @@ variables: $Target = "Releases\" + $CI_COMMIT_BRANCH + "\" + $env:APP_NAME + ".zip" $MD5 = Get-FileHash $Target -Algorithm MD5 $SHA1 = Get-FileHash $Target -Algorithm SHA1 - New-Item $Target+".md5" - New-Item $Target+".sha1" - $MD5.Hash | Set-Content -Path $Target+".md5" - $SHA1.Hash | Set-Content -Path $Target+".sha1" + New-Item $Target.md5 + New-Item $Target.sha1 + $MD5.Hash | Set-Content -Path $Target.md5 + $SHA1.Hash | Set-Content -Path $Target.sha1 echo "Created HASH files for $Target"