From 8113b9217393927abcc1a6a36ab4553489c2e158 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrius=20=C5=A0tikonas?= Date: Tue, 12 Jan 2021 21:18:59 +0000 Subject: [PATCH] Copy all types of build scripts into sysa, not just kaem. --- rootfs.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/rootfs.sh b/rootfs.sh index 5045c9c..b326304 100755 --- 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 }