style: do not use backticks (#5687)

This commit is contained in:
Piotr Idzik 2024-10-04 23:07:07 +02:00 committed by GitHub
parent d1614857bd
commit 23825c77b2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -21,9 +21,9 @@ WORKFLOW="Build Test"
GREP_ERROR_PATTERN='Test "http/interactsh.yaml" failed' GREP_ERROR_PATTERN='Test "http/interactsh.yaml" failed'
#Set fonts for Help. #Set fonts for Help.
NORM=`tput sgr0` NORM=$(tput sgr0)
BOLD=`tput bold` BOLD=$(tput bold)
REV=`tput smso` REV=$(tput smso)
HELP() HELP()
{ {
@ -73,7 +73,7 @@ function print_bold() {
function retry_failed_jobs() { function retry_failed_jobs() {
print_bold "Checking failed workflows for branch $BRANCH before $BEFORE" print_bold "Checking failed workflows for branch $BRANCH before $BEFORE"
date=`date +%Y-%m-%d'T'%H:%M'Z' -d "$BEFORE"` date=$(date +%Y-%m-%d'T'%H:%M'Z' -d "$BEFORE")
workflowIds=$(gh run list --limit "$LIMIT" --json headBranch,status,name,conclusion,databaseId,updatedAt | jq -c '.[] | workflowIds=$(gh run list --limit "$LIMIT" --json headBranch,status,name,conclusion,databaseId,updatedAt | jq -c '.[] |
select ( .headBranch==$branch ) | select ( .headBranch==$branch ) |