Skip to content
Snippets Groups Projects
Commit 0774b78b authored by Emil Obreshkov's avatar Emil Obreshkov
Browse files

Merge branch 'copy-RPM-script' into 'master'

Added parentheses around ERROR_COUNT (L 71).

See merge request !6608
parents a0c555a7 17b0ad69
No related branches found
No related tags found
No related merge requests found
......@@ -68,7 +68,7 @@ DESTDIR=${DESTDIR}/${BRANCH}/${ARCH}/${DDAY}
if [ ! -d ${DESTDIR} ] ; then
echo "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
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