diff options
author | Francis Rowe <info@gluglug.org.uk> | 2014-12-13 17:44:18 +0000 |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2014-12-13 18:46:15 +0000 |
commit | 04cff6c87c714c8e322033cc3f3f66c94cb150e5 (patch) | |
tree | e0bf91e7d6c4575f539a83b8ad07d8ab734972c7 /build-release | |
parent | 2e51cdedd2cc640e39db89805ec3ed6c9c1172a0 (diff) | |
download | librebootfr-04cff6c87c714c8e322033cc3f3f66c94cb150e5.tar.gz librebootfr-04cff6c87c714c8e322033cc3f3f66c94cb150e5.zip |
build-release: not all files were copied to libreboot_src. fix it.
Diffstat (limited to 'build-release')
-rwxr-xr-x | build-release | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/build-release b/build-release index 27206fbd..03647235 100755 --- a/build-release +++ b/build-release @@ -46,7 +46,7 @@ rm -f libreboot_src.tar.xz rm -f libreboot_bin.tar.xz # Get manifest which will be used to copy everything -ls > releasefilelist +find -maxdepth 1 > releasefilelist # ### Prepare libreboot_src archive ready for release # ---------------------------------------------------------------------------------------------------------------------------- @@ -57,7 +57,10 @@ mkdir libreboot_src for resource in $(cat releasefilelist) do - cp -r $resource libreboot_src + if [ "$resource" != "." ] + then + cp -r $resource libreboot_src + fi done cd libreboot_src/ |