source: ProjectBuilder/devel/contrib/mkallctn@ 2356

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

Fix container build scripts

  • Property svn:executable set to *
File size: 481 bytes
RevLine 
[2351]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`
5
[2356]6for pbos in `echo $distros | sed 's/,/ /g'`;
[2351]7do
[2356]8 d=`echo $pbos | cut -d'-' -f1`
9 v=`echo $pbos | cut -d'-' -f2`
[2351]10 # Check status to see whether we shodl go further
11 if [ _"$d" = _"mageia" ]; then
12 /users/bruno/svn-git/pb/devel/contrib/mkctn $d $v mageiaofficial
13 else
14 /users/bruno/svn-git/pb/devel/contrib/mkctn $d $v
15 fi
16done
Note: See TracBrowser for help on using the repository browser.