mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-17 18:55:26 +00:00
style: do not use backticks (#5687)
This commit is contained in:
parent
d1614857bd
commit
23825c77b2
@ -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 ) |
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user