Skip to content

Commit

Permalink
Fix n_built check
Browse files Browse the repository at this point in the history
  • Loading branch information
Neves-P committed Mar 4, 2024
1 parent 02e6899 commit 92be3d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bot/check-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ if [[ ${SLURM} -eq 1 ]]; then

n_built=$(echo $grep_out | grep -oP '(?<=for )[0-9]+')
n_to_build=$(echo $grep_out | grep -oP '(?<=out of )[0-9]+')
[[${n_built} -e ${n_to_build}]] && NO_MISSING=1 || NO_MISSING=0
[[ "${n_built}" == "${n_to_build}" ]] && NO_MISSING=1 || NO_MISSING=0
# have to be careful to not add searched for pattern into slurm out file
[[ ${VERBOSE} -ne 0 ]] && echo ">> searching for '"${GP_no_missing}"'"
[[ ${VERBOSE} -ne 0 ]] && echo "${grep_out}"
Expand Down

0 comments on commit 92be3d5

Please sign in to comment.