logo

live-bootstrap

Mirror of <https://github.com/fosslinux/live-bootstrap>
commit: bca6f897a283d8c074a3cd0ded04c90da0ea09a3
parent 98058e6b70ba4e28839c0b4898d7049c172ea0d4
Author: fosslinux <fosslinux@aussies.space>
Date:   Wed, 13 Jan 2021 08:24:07 +1100

Merge pull request #9 from stikonas/build_scripts

Copy all types of build scripts into sysa, not just kaem.

Diffstat:

Mrootfs.sh4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/rootfs.sh b/rootfs.sh @@ -98,7 +98,9 @@ get_file() { else bname=$(basename "$url" ".tar.${ext}") fi - cp "${bname}.kaem" tmp/after + if [ -f "{bname}.*" ]; then + cp "${bname}.*" tmp/after + fi cp "../sources/$(basename "$url")" tmp/after }