Fixed invalid 'done' in shell script -- typo.

This commit is contained in:
Stas Degteff 2006-02-20 16:56:28 +00:00
parent c277625152
commit 49e3c5a857
4 changed files with 4 additions and 4 deletions

View File

@ -48,7 +48,7 @@ make PLATFORM=djg strip
make docs
for i in ${bines} ; do
if [ ! -f ${i} ] ; then echo "File ${i} not exists, stop!"; exit 1 ; done
if [ ! -f ${i} ] ; then echo "File ${i} not exists, stop!"; exit 1 ; fi
done
#zip -9DXj ${name} ${file_id} $files

View File

@ -41,7 +41,7 @@ make PLATFORM=lnx strip
make docs
for i in ${bines} ; do
if [ ! -f ${i} ] ; then echo "File ${i} not exists, stop!"; exit 1 ; done
if [ ! -f ${i} ] ; then echo "File ${i} not exists, stop!"; exit 1 ; fi
done
zip -9DXj ${name} bin/File_ID.Diz $files

View File

@ -42,7 +42,7 @@ printf ' *http://golded-plus.sf.net* \r\n' >>Release/bin/File_ID.Diz
make docs
for i in ${bines} ; do
if [ ! -f ${i} ] ; then echo "File ${i} not exists, stop!"; exit 1 ; done
if [ ! -f ${i} ] ; then echo "File ${i} not exists, stop!"; exit 1 ; fi
done
zip -9DXj ${name} Release/bin/File_ID.Diz $files

View File

@ -49,7 +49,7 @@ make strip
make docs
for i in ${bines} ; do
if [ ! -f ${i} ] ; then echo "File ${i} not exists, stop!"; exit 1 ; done
if [ ! -f ${i} ] ; then echo "File ${i} not exists, stop!"; exit 1 ; fi
done
zip -9DXj ${name} bin/File_ID.Diz $files