diff options
| author | Natanael Copa <ncopa@alpinelinux.org> | 2014-11-27 07:37:18 +0000 |
|---|---|---|
| committer | Natanael Copa <ncopa@alpinelinux.org> | 2014-11-27 07:37:18 +0000 |
| commit | 13b8a5b2fcdff57e7953cc35703221ba8d1bc040 (patch) | |
| tree | d73c9b287c1e9eb820111fcd5cf961db4a52f238 | |
| parent | 9b635572eccf92e269c38e7bb9ddeaf9bdad01b4 (diff) | |
| download | alpine-iso-13b8a5b2fcdff57e7953cc35703221ba8d1bc040.tar.bz2 alpine-iso-13b8a5b2fcdff57e7953cc35703221ba8d1bc040.tar.xz | |
mklatest: rename the 'iso' field to 'file'
We will ship rpi tar.gz images
| -rw-r--r-- | mklatest.sh | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/mklatest.sh b/mklatest.sh index d14f34f..0eec9a1 100644 --- a/mklatest.sh +++ b/mklatest.sh @@ -30,15 +30,16 @@ do_stat() { do_yaml() { echo "---" - do_stat | while read date time isopath size sha1 sha256; do - iso=${isopath##*/} + do_stat | while read date time filepath size sha1 sha256; do + file=${filepath##*/} flavor=${iso%-${current}-${arch}.iso} echo "-" echo " branch: $branch" echo " arch: $arch" echo " version: $current" echo " flavor: $flavor" - echo " iso: $iso" + echo " file: $file" + echo " iso: $file" # for compat echo " date: $date" echo " time: $time" echo " size: $size" |
