source: ProjectBuilder/devel/contrib/mkallctn@ 2369

Last change on this file since 2369 was 2369, checked in by Bruno Cornec, 5 years ago

better automatic tests with docker for pb

  • Property svn:executable set to *
File size: 304 bytes
Line 
1#!/bin/bash
2#
3vedir=`grep -2 vepath ~/.pbrc.yml | grep default: | cut -d: -f2`
4distros=`grep -2 velist $vedir/.pbrc.yml | grep default: | cut -d: -f2`
5lwd=`dirname $0`
6
7for pbos in `echo $distros | sed 's/,/ /g'`;
8do
9 d=`echo $pbos | cut -d'-' -f1`
10 v=`echo $pbos | cut -d'-' -f2`
11 $lwd/mkctn $d $v
12done
Note: See TracBrowser for help on using the repository browser.