Forum Discussion
Altera_Forum
Honored Contributor
16 years agohere's a bash script if you didn't want to use quartus_sh --flow. looking at the exit code of the app was a better idea than grep -c unsuccessful. this one also catches internal errors.
#!/bin/bash
quartus_map myproj
out=$?
if ; then
quartus_fit myproj
out=$?
fi
if ; then
quartus_asm myproj
out=$?
fi