mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-23 03:26:31 +01:00
script: get_file() fix error, which caused make-3.80 to break the script after download, because make-3.80.kaem does not exists and we have 'set -e' active...
This commit is contained in:
parent
03edaf4c8f
commit
e967d2f5a9
1 changed files with 3 additions and 2 deletions
|
|
@ -99,8 +99,9 @@ get_file() {
|
|||
else
|
||||
bname=$(basename "$url" ".tar.${ext}")
|
||||
fi
|
||||
cp "${bname}.kaem" tmp/after
|
||||
cp "../sources/$(basename "$url")" tmp/after
|
||||
|
||||
[ -f "${bname}.kaem" ] && cp -v "${bname}.kaem" tmp/after
|
||||
cp -v "../sources/$(basename "$url")" tmp/after
|
||||
}
|
||||
|
||||
# gzip 1.2.4
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue