From 7f114f5e27b5565fb3923eff9ad1bd6955ce1844 Mon Sep 17 00:00:00 2001 From: Gary Wu Date: Thu, 3 May 2018 17:06:06 -0700 Subject: Verify that docker manifest images exist in nexus3 Add enforcement check to ensure that all docker images specified in the manifest can actually be found on nexus3. Change-Id: I49ebc60a50cbb9f36f6e06d2d69c39cfeeacfcde Issue-ID: INT-488 Signed-off-by: Gary Wu --- version-manifest/src/main/scripts/check-sorted.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'version-manifest/src/main/scripts/check-sorted.sh') diff --git a/version-manifest/src/main/scripts/check-sorted.sh b/version-manifest/src/main/scripts/check-sorted.sh index d926409f4..fa120f399 100755 --- a/version-manifest/src/main/scripts/check-sorted.sh +++ b/version-manifest/src/main/scripts/check-sorted.sh @@ -3,7 +3,7 @@ LC_ALL=C sort -c $1 retval=$? if [ $retval -ne 0 ]; then echo - echo "ERROR: $1 is not properly sorted. Please sort it with the following commands:" + echo "[ERROR] $1 is not properly sorted. Please sort it with the following commands:" echo echo " LC_ALL=C sort < $1 > $1.tmp" echo " mv $1.tmp $1" -- cgit 1.2.3-korg