mirror of
https://git.code.sf.net/p/quake/newtree
synced 2025-04-05 06:35:57 +00:00
fix error detection
This commit is contained in:
parent
e7a25fb76a
commit
f85c3ac42f
1 changed files with 1 additions and 1 deletions
|
@ -6,7 +6,7 @@ if [ $# -eq 0 ]; then
|
|||
fi
|
||||
|
||||
for pakfile in $*; do
|
||||
[ -f ${pakfile} ] || echo ${pakfile} not found && continue
|
||||
if [ ! -f ${pakfile} ]; then echo ${pakfile} not found; continue; fi
|
||||
[ "${pakfile#/}" = "${pakfile}" ] && pakfile=`pwd`/${pakfile}
|
||||
|
||||
tmp=/var/tmp/zpak.$$
|
||||
|
|
Loading…
Reference in a new issue