#!/bin/bash # @License EPL-1.0 ############################################################################## # Copyright (c) 2015 The Linux Foundation and others. # # All rights reserved. This program and the accompanying materials # are made available under the terms of the Eclipse Public License v1.0 # which accompanies this distribution, and is available at # http://www.eclipse.org/legal/epl-v10.html # # Contributors: # Thanh Ha (The Linux Foundation) - Initial implementation ############################################################################## # Clear workspace rm -rf * # Clone all ODL projects for p in `ssh -p 29418 git.opendaylight.org gerrit ls-projects` do mkdir -p `dirname "$p"` git clone "https://git.opendaylight.org/gerrit/$p.git" "$p" done # Check pom.xml for and FILE=repos.txt find . -name pom.xml | xargs grep -i '\|' > $FILE [[ $(tr -d "\r\n" < $FILE|wc -c) -eq 0 ]] && rm $FILE if [ -a $FILE ] then cat $FILE echo "[ERROR] Repos with and/or sections found!" exit 1 fi