Fixed invalid 'done' in shell script -- typo.
This commit is contained in:
parent
c277625152
commit
49e3c5a857
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Reference in New Issue
Block a user