diff options
author | Leah Rowe <leah@libreboot.org> | 2025-05-13 22:17:37 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2025-05-13 22:17:37 +0100 |
commit | 6089716f07caf6b4690df1e1c2f2089a27a0b514 (patch) | |
tree | fa37de3162bec06c94dfd3c75c0b7c9f4b33073c /include/release.sh | |
parent | b04c86e5740f92cbea708f52a444df3aa1a2061f (diff) |
The result of the printf statement is sorted, making
it do binaries first, which results in a lot of junk
files then being present inside the source archive.
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'include/release.sh')
-rw-r--r-- | include/release.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/release.sh b/include/release.sh index fbcc5621..f0799f17 100644 --- a/include/release.sh +++ b/include/release.sh @@ -28,7 +28,9 @@ release() remkdir "$vdir" x_ git clone . "$relsrcdir" - fx_ prep_release printf "src\ntarball\nbin\n" + prep_release src + prep_release tarball + prep_release bin x_ rm -Rf "$relsrcdir" x_ mkdir -p "$reldir" |