Skip to content
Snippets Groups Projects
Commit 17b0ad69 authored by Oana Vickey Boeriu's avatar Oana Vickey Boeriu
Browse files

Added parenteses around ERROR_COUNT (L 71).

parent a0c555a7
No related branches found
No related tags found
No related merge requests found
...@@ -68,7 +68,7 @@ DESTDIR=${DESTDIR}/${BRANCH}/${ARCH}/${DDAY} ...@@ -68,7 +68,7 @@ DESTDIR=${DESTDIR}/${BRANCH}/${ARCH}/${DDAY}
if [ ! -d ${DESTDIR} ] ; then if [ ! -d ${DESTDIR} ] ; then
echo "mkdir -p ${DESTDIR}" echo "mkdir -p ${DESTDIR}"
mkdir -p ${DESTDIR} mkdir -p ${DESTDIR}
if [ ! -d ${DESTDIR} ] ; then ERROR_COUNT++ ; fi #avoid false positive eos error if the directory was actually created if [ ! -d ${DESTDIR} ] ; then ((ERROR_COUNT++)) ; fi #avoid false positive eos error if the directory was actually created
fi fi
arr_rpm=(`(shopt -s nocaseglob; ls ${SOURCEDIR}/*.rpm)`) arr_rpm=(`(shopt -s nocaseglob; ls ${SOURCEDIR}/*.rpm)`)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment