From b6d29b87cfcb61f8a746488ca82c51880b79ef84 Mon Sep 17 00:00:00 2001 From: Frank Bischof Date: Thu, 2 Mar 2023 09:15:27 +0100 Subject: [PATCH] Fixed output --- readable_seconds.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/readable_seconds.ps1 b/readable_seconds.ps1 index 887285d..37146a2 100644 --- a/readable_seconds.ps1 +++ b/readable_seconds.ps1 @@ -1,6 +1,6 @@ #################################################### # AUTHOR: F.Bischof (info@meer-web.nl) # -# VERSION: 1.0.0 # +# VERSION: 1.0.1 # # DATE: 01-03-2023 # #################################################### @@ -52,4 +52,4 @@ Write-Host "Days:" $NUMBER[0] Write-Host "Hours:" $NUMBER[1] Write-Host "Minutes:" $NUMBER[2] Write-Host "Seconds:" $NUMBER[3] -Write-Host "${DAYS}:${HOURS}:${MINUTES}:${SECONDS}" \ No newline at end of file +Write-Host "$NUMBER[0]:$NUMBER[1]:$NUMBER[2]:$NUMBER[3]" \ No newline at end of file