lol
at release-16.03-start 22 lines 539 B view raw
1source $stdenv/setup 2 3# creating the export drictory and checking out there only to be able to 4# move the content without the root directory into $out ... 5# cvs -f -d "$url" export $tag -d "$out" "$module" 6# should work (but didn't - got no response on #cvs) 7# See als man Page for those options 8 9mkdir -p export 10if [ -n "$tag" ]; then 11 tag="-r $tag" 12else 13 if [ -n "$date" ]; then 14 tag="-D $date" 15 else 16 tag="-D NOW" 17 fi 18fi 19(cd export && cvs -f -z0 -d "$cvsRoot" export $tag "$module") 20mv export/* $out 21 22stopNest