Merge "Fix ERROR(1419) Bad path '#cert-manager-helm' in file 'centos_pkg_dirs'"

This commit is contained in:
Zuul 2020-12-02 14:49:04 +00:00 committed by Gerrit Code Review
commit 1bc9f49b7e
2 changed files with 2 additions and 2 deletions

View File

@ -1374,7 +1374,7 @@ for GIT_ROOT in $GIT_LIST; do
continue
fi
for p in $(cat $GIT_ROOT/$PKG_DIRS_FILE 2>> /dev/null); do
for p in $(sed 's/#.*//' $GIT_ROOT/$PKG_DIRS_FILE 2>> /dev/null); do
if [ $STOP_SCHEDULING -eq 1 ]; then
break;
fi

View File

@ -1238,7 +1238,7 @@ for GIT_ROOT in $GIT_LIST; do
continue
fi
for p in $(cat $GIT_ROOT/$PKG_DIRS_FILE 2>> /dev/null); do
for p in $(sed 's/#.*//' $GIT_ROOT/$PKG_DIRS_FILE 2>> /dev/null); do
src_dir="$GIT_ROOT/$p"
if [ -d $src_dir ]; then
if [ -d $src_dir/${DISTRO} ]; then