diff options
author | Raúl Porcel <armin76@gentoo.org> | 2012-07-22 17:35:50 +0000 |
---|---|---|
committer | Raúl Porcel <armin76@gentoo.org> | 2012-07-22 17:35:50 +0000 |
commit | 62d8bf9930952885cca9df1b9c6b316c8192b35d (patch) | |
tree | 1ce9a27f20198fa3d431d27aa0e275a195072572 /scripts | |
parent | Drop USE="-*" from the installcd-stage1 specs for alpha, ia64, ppc64 and spar... (diff) | |
download | releng-62d8bf9930952885cca9df1b9c6b316c8192b35d.tar.gz releng-62d8bf9930952885cca9df1b9c6b316c8192b35d.tar.bz2 releng-62d8bf9930952885cca9df1b9c6b316c8192b35d.zip |
Add a - to fix arm* variants symlink, bug #366123
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/copy_buildsync.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/copy_buildsync.sh b/scripts/copy_buildsync.sh index 729ff383..c328ccce 100755 --- a/scripts/copy_buildsync.sh +++ b/scripts/copy_buildsync.sh @@ -89,7 +89,7 @@ for ARCH in $ARCHES; do echo -n '' >"${tmpdir}"/.keep.${ARCH}.txt for v in $variants ; do #date_variant=$(find 20* -iname "${v}*" \( -name '*.tar.bz2' -o -iname '*.iso' \) -printf '%h\n' | sed -e "s,.*/$a/autobuilds/,,g" -e 's,/.*,,g' |sort -n | tail -n1 ) - variant_path=$(find 20* -iname "${v}*" \( -name '*.tar.bz2' -o -iname '*.iso' \) -print | sed -e "s,.*/$a/autobuilds/,,g" | sort -k1,1 -t/ | tail -n1 ) + variant_path=$(find 20* -iname "${v}-*" \( -name '*.tar.bz2' -o -iname '*.iso' \) -print | sed -e "s,.*/$a/autobuilds/,,g" | sort -k1,1 -t/ | tail -n1 ) f="latest-${v}.txt" echo -e "${header}" >"${f}" echo -e "${variant_path}" >>${f} |