aboutsummaryrefslogtreecommitdiffstats
path: root/version-manifest/src/main/scripts/check-sorted.sh
diff options
context:
space:
mode:
Diffstat (limited to 'version-manifest/src/main/scripts/check-sorted.sh')
-rwxr-xr-xversion-manifest/src/main/scripts/check-sorted.sh2
1 files changed, 1 insertions, 1 deletions
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"