From 7dc2f611296835447f3a2927f475a573f34255ce Mon Sep 17 00:00:00 2001 From: Dmitry <98899785+mdqst@users.noreply.github.com> Date: Thu, 21 Nov 2024 14:28:20 +0300 Subject: [PATCH] Typo Update validate-gentx.sh Fix typo: corrected "curent" to "current" in the script for accurate output --- scripts/validate-gentx.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/validate-gentx.sh b/scripts/validate-gentx.sh index fdbb9cd6..d49a913f 100644 --- a/scripts/validate-gentx.sh +++ b/scripts/validate-gentx.sh @@ -24,17 +24,17 @@ current=$(date +%Y-%m-%d\ %H:%M:%S) curTime=$(date --date="$current" +%s) if [[ $curTime < $stTime ]]; then - echo "start=$stTime:curent=$curTime:endTime=$endTime" + echo "start=$stTime:current=$curTime:endTime=$endTime" echo "Gentx submission is not open yet. Please close the PR and raise a new PR after 04-June-2021 23:59:59" exit 0 else if [[ $curTime > $endTime ]]; then - echo "start=$stTime:curent=$curTime:endTime=$endTime" + echo "start=$stTime:current=$curTime:endTime=$endTime" echo "Gentx submission is closed" exit 0 else echo "Gentx is now open" - echo "start=$stTime:curent=$curTime:endTime=$endTime" + echo "start=$stTime:current=$curTime:endTime=$endTime" fi fi