Skip to content

Commit

Permalink
Fix download lagrange igniton script.
Browse files Browse the repository at this point in the history
  • Loading branch information
suyash67 committed Feb 8, 2023
1 parent ffa8abd commit 1dc3ba5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cpp/srs_db/download_ignition_lagrange.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ download() {

get_transcript() {
if [ -f checksums ]; then
checksum ${1} && continue
checksum ${1} && return 0
download ${1}
checksum ${1} || exit 1
checksum ${1} || return 1
else
download ${1}
fi
Expand Down

0 comments on commit 1dc3ba5

Please sign in to comment.