From f4db8a81012bdfa36a7a3abd133800b7fcb96618 Mon Sep 17 00:00:00 2001 From: Gary Wu Date: Wed, 17 Oct 2018 14:56:31 -0700 Subject: Add new docker images found in OOM Change-Id: I0ca0c4d0c042cef01880f9436b3745c285dba12f Issue-ID: INT-663 Signed-off-by: Gary Wu --- version-manifest/src/main/scripts/add-images-from-oom.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'version-manifest/src/main/scripts') diff --git a/version-manifest/src/main/scripts/add-images-from-oom.sh b/version-manifest/src/main/scripts/add-images-from-oom.sh index f7207701f..6d8c40a92 100755 --- a/version-manifest/src/main/scripts/add-images-from-oom.sh +++ b/version-manifest/src/main/scripts/add-images-from-oom.sh @@ -21,7 +21,7 @@ mkdir -p $TARGET_DIR cd $TARGET_DIR cd $OOM_DIR -rgrep "image: .*" --include=values.yaml -h | cut -d ' ' -f 2 | tr -d '"'| grep -v '<' | grep -e "^onap" -e "^openecomp" | LC_ALL=C sort -u > $TARGET_DIR/oom-manifest.txt +rgrep -i "image: .*" --include=values.yaml -h | awk '{ $1=$1; print }' | cut -d ' ' -f 2 | tr -d '"'| grep -v '<' | grep -e "^onap" -e "^openecomp" | LC_ALL=C sort -u > $TARGET_DIR/oom-manifest.txt touch $TARGET_DIR/docker-manifest-new-entries.txt for line in $(cat $TARGET_DIR/oom-manifest.txt); do -- cgit 1.2.3-korg