fix: Correct the typing of the comparison from integer to string
This commit is contained in:
parent
6de5f4674f
commit
49f72dc86b
1 changed files with 5 additions and 5 deletions
|
@ -57,9 +57,9 @@ loop() {
|
|||
if [[ ! -f "${nlock}" ]]; then
|
||||
touch "${nlock}"
|
||||
fi
|
||||
if [[ -f "${nlock}" && $(cat "${nlock}") -eq "" ]]; then
|
||||
if [[ -f "${nlock}" && $(cat "${nlock}") == "" ]]; then
|
||||
echo "${id}" >"${nlock}"
|
||||
if [[ -f "${nlock}" && $(cat "${nlock}") -eq "${id}" ]]; then
|
||||
if [[ -f "${nlock}" && $(cat "${nlock}") == "${id}" ]]; then
|
||||
read -r n_tmp nt_tmp <"${nfile}"
|
||||
if [[ -n "${n_tmp}" && -n "${nt_tmp}" ]]; then
|
||||
n="${n_tmp}"
|
||||
|
@ -191,14 +191,14 @@ loop() {
|
|||
#n is increased only if error_found = 1
|
||||
touch "${nlock}"
|
||||
fi
|
||||
if [[ -f "${nlock}" && $(cat "${nlock}") -eq "" ]]; then
|
||||
if [[ -f "${nlock}" && $(cat "${nlock}") == "" ]]; then
|
||||
echo "${id}" >"${nlock}"
|
||||
if [[ -f "${nlock}" && $(cat "${nlock}") -eq "${id}" ]]; then
|
||||
if [[ -f "${nlock}" && $(cat "${nlock}") == "${id}" ]]; then
|
||||
read -r n_tmp nt_tmp <"${nfile}"
|
||||
if [[ -n "${n_tmp}" && -n "${nt_tmp}" ]]; then
|
||||
n=$((n_tmp + error_found))
|
||||
nt=$((nt_tmp + 1))
|
||||
if [[ $(cat "${nlock}") -eq "${id}" ]]; then
|
||||
if [[ $(cat "${nlock}") == "${id}" ]]; then
|
||||
echo "${n} ${nt}" >"${nfile}"
|
||||
if [[ -f "${nlock}" ]]; then
|
||||
echo "" >"${nlock}"
|
||||
|
|
Loading…
Add table
Reference in a new issue