[chk_nonexistent_ids] Now ignores LAST_DEPLOY and LAST_UPDATE rows
This commit is contained in:
parent
511c997c4e
commit
20cb57ecef
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ chk_nonexistent_ids() {
|
|||
local DB_FILE="${2}"
|
||||
|
||||
local ERR=false
|
||||
local rowList=($(awk 'BEGIN{RS="\n";FS="\t";OFS="="}{print $2,$3,$4}' "${DB_FILE}"))
|
||||
local rowList=($(awk 'BEGIN{RS="\n";FS="\t";OFS="="}{if($1!="LAST_UPDATE" || $1!="LAST_DEPLOY"){print $2,$3,$4}}' "${DB_FILE}"))
|
||||
|
||||
local COUNT=1
|
||||
for row in ${rowList[@]}; do
|
||||
|
|
Loading…
Reference in a new issue