Skip to content
Snippets Groups Projects
Commit 59f12b12 authored by Emil Obreshkov's avatar Emil Obreshkov Committed by Oana Vickey Boeriu
Browse files

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

Added parentheses around ERROR_COUNT (L 71).

See merge request !6608

Former-commit-id: 10f4a7557c9e0f1501c96bbeb10e13cb6870dc52
parent e9683454
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