Merge pull request #9 from stikonas/build_scripts

Copy all types of build scripts into sysa, not just kaem.
This commit is contained in:
fosslinux 2021-01-13 08:24:07 +11:00 committed by GitHub
commit bca6f897a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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
}