Remove apostrophes

This commit is contained in:
Raúl Porcel 2013-08-14 17:23:42 +00:00
parent ef28b15977
commit 585d8d645f
2 changed files with 2 additions and 2 deletions

View file

@ -46,7 +46,7 @@ pre_build() {
# Symlink the latest stages3 to build from # Symlink the latest stages3 to build from
for d in ${BUILD_SRCDIR_BASE}/{default,hardened} ; do for d in ${BUILD_SRCDIR_BASE}/{default,hardened} ; do
pushd $d pushd $d
for f in $(ls 'stage3*bz2' | give_latest_from_dates ) ; do for f in $(ls stage3*bz2 | give_latest_from_dates ) ; do
of=${f/20[0-9][0-9].[0-9]/latest} # for 20XX.Y stuff of=${f/20[0-9][0-9].[0-9]/latest} # for 20XX.Y stuff
of=${of/20[0-9][0-9][0-1][0-9][0-9][0-9]/latest} # for 20YYMMDD stuff of=${of/20[0-9][0-9][0-1][0-9][0-9][0-9]/latest} # for 20YYMMDD stuff
ln -sf $f $of ln -sf $f $of

View file

@ -38,7 +38,7 @@ pre_build() {
# Symlink the latest stages3 to build from # Symlink the latest stages3 to build from
for d in ${BUILD_SRCDIR_BASE}/{default,hardened} ; do for d in ${BUILD_SRCDIR_BASE}/{default,hardened} ; do
pushd $d pushd $d
for f in $(ls 'stage3*bz2' | give_latest_from_dates ) ; do for f in $(ls stage3*bz2 | give_latest_from_dates ) ; do
of=${f/20[0-9][0-9].[0-9]/latest} # for 20XX.Y stuff of=${f/20[0-9][0-9].[0-9]/latest} # for 20XX.Y stuff
of=${of/20[0-9][0-9][0-1][0-9][0-9][0-9]/latest} # for 20YYMMDD stuff of=${of/20[0-9][0-9][0-1][0-9][0-9][0-9]/latest} # for 20YYMMDD stuff
ln -sf $f $of ln -sf $f $of