Skip to content

Commit

Permalink
Remove Bash-specific syntax in build script
Browse files Browse the repository at this point in the history
  • Loading branch information
rzumer authored and tdaede committed Nov 15, 2018
1 parent 7ada168 commit d0f3a3c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build.sh
Expand Up @@ -106,7 +106,9 @@ cargo run --bin rav1e $BUILD_TYPE -- $SEQ -o $ENC_FILE -s 3 -r $REC_FILE
${AOM_TEST}/aomdec $ENC_FILE -o $DEC_FILE

# Input/Output compare
cmp <(tail -n+2 $DEC_FILE) <(tail -n+2 $REC_FILE)
tail -n+2 $DEC_FILE > /tmp/dec_file
tail -n+2 $REC_FILE > /tmp/rec_file
cmp /tmp/dec_file /tmp/rec_file

# Daala tools support coming soon
#DAALA_TOOLS="../daala/tools/"
Expand Down

0 comments on commit d0f3a3c

Please sign in to comment.