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

This commit is contained in:
Andrius Štikonas 2021-01-12 21:18:59 +00:00
parent 04ce8ebaef
commit 8113b92173
1 changed files with 3 additions and 1 deletions

View File

@ -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
}