I was using Drupal Zen theme and found that there was a empty space below the Page Bottom region. To remove that space, try applying the following CSS on the wrapper <div>.
/* Fix the empty space below page bottom */
#page-bottom-wrapper {
overflow: hidden;
}
Being democratic is not enough – a majority cannot turn what is wrong into right. Freedom depends on the strength of institutions: law and order, a free press, the police and the army that serves the government rather than supervises it.
We can use the <fail> Ant task to exit the Ant script but this will fail the build.
Sometimes we may have some checking during the build such that it could exit peacefully without build failure in certain cases. So in this case, we can’t use the <fail> Ant task.
A workaround is to use the <if> Ant-contrib task to create a boolean variable and whether continue or not could be determined by checking this boolean in the <target> if attribute.