Is there a way to enumerate the compilation status of a package?
currently after deployment we are doing something like this to validate a successful load and compile of classes:
successful_compilation_count=`grep -a "Compilation finished successfully" output.log | wc -l` successful_load_count=`grep -a "Load finished successfully" output.log | wc -l`
is there a method to do this where it is a little bit more elegant/dynamic without having to maintain counts for comparison ?