selinux/scripts/release

13 lines
276 B
Plaintext
Raw Normal View History

2009-03-12 05:23:32 +00:00
#!/bin/bash
DIRS="libsepol libselinux libsemanage policycoreutils checkpolicy sepolgen"
mkdir ../selinux-dev-release
for i in $DIRS; do
cd $i
git archive --format=tar --prefix=$i-`cat VERSION`/ HEAD | gzip > ../../selinux-dev-release/$i-`cat VERSION`.tar.gz
cd ..
done