kevinw66 commented on code in PR #3376: URL: https://github.com/apache/ambari/pull/3376#discussion_r984617279
########## dev-support/docker/centos7/build-containers.sh: ########## @@ -15,6 +15,12 @@ # See the License for the specific language governing permissions and # limitations under the License. +echo -e "\033[32mInstall mvn\033[0m" +if [ ! "$(command -v mvn)" ]; then + echo "mvn not found and will be installed" >&2 + yum install -y maven Review Comment: We can't use yum here because we should support as many distros as possible -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
