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 authored and dbanks12 committed Jan 28, 2023
1 parent 353a60e commit 0bed278
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 0bed278

Please sign in to comment.