diff options
author | Yang Xu <yang.xu3@huawei.com> | 2018-10-18 01:11:24 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-10-18 01:11:24 +0000 |
commit | 269784658cc33e50b26ad929bc252e5bc5db1c69 (patch) | |
tree | 58ae206d3a39d1a7b82565d519ebf9bb7ca39abd /version-manifest/src/main/scripts/add-images-from-oom.sh | |
parent | 974ef45d1ee5f4662adda8fe04583a417d399964 (diff) | |
parent | f4db8a81012bdfa36a7a3abd133800b7fcb96618 (diff) |
Merge "Add new docker images found in OOM"
Diffstat (limited to 'version-manifest/src/main/scripts/add-images-from-oom.sh')
-rwxr-xr-x | version-manifest/src/main/scripts/add-images-from-oom.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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 |