[chk_nonexistent_ids] 2nd attempt at ignoring LAST rows
This commit is contained in:
parent
29b8f4d4af
commit
5d199f8315
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="="}{if($1!="LAST_UPDATE" || $1!="LAST_DEPLOY"){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