mirror of
https://github.com/SELinuxProject/selinux
synced 2024-12-26 16:02:26 +00:00
3a4fc087ee
I just don't like the error message when building tar files. Signed-off-by: Eric Paris <eparis@redhat.com>
13 lines
279 B
Bash
Executable File
13 lines
279 B
Bash
Executable File
#!/bin/bash
|
|
|
|
DIRS="libsepol libselinux libsemanage policycoreutils checkpolicy sepolgen"
|
|
|
|
mkdir -p ../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
|
|
|