diff options
author | Iru Cai <mytbk920423@gmail.com> | 2016-08-06 13:14:38 +0800 |
---|---|---|
committer | Iru Cai <mytbk920423@gmail.com> | 2016-08-06 13:14:38 +0800 |
commit | 25545a33aab48c1c9780e5a634d5f94d623f8930 (patch) | |
tree | 7f693c08162fe73678659492b93766d323b830b6 /buildlive | |
parent | 6bc7f72a6c72714e55d687f108bdde8adb287c0c (diff) | |
download | liveusb-builder-25545a33aab48c1c9780e5a634d5f94d623f8930.tar.xz |
download files with wget's -c option
Diffstat (limited to 'buildlive')
-rwxr-xr-x | buildlive | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -66,11 +66,10 @@ echo "uuid=$UUID" > "$GRUBCFG" for i in ${DISTROLIST[@]} do process_distro "$i" - if [ -f "isofiles/$ISOFILE" ]; then - checksum_verify + if [ -f "isofiles/$ISOFILE" ] && checksum_verify; then + true else download_iso - checksum_verify fi install_live |