Skip to content

Commit

Permalink
release script
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrindle committed Mar 12, 2009
1 parent 3028bc3 commit ff317eb
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions scripts/release
@@ -0,0 +1,12 @@
#!/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

0 comments on commit ff317eb

Please sign in to comment.