Remove check-unicode script 58/77758/1
authorThanh Ha <thanh.ha@linuxfoundation.org>
Wed, 14 Nov 2018 06:49:33 +0000 (14:49 +0800)
committerThanh Ha <thanh.ha@linuxfoundation.org>
Wed, 14 Nov 2018 06:49:36 +0000 (14:49 +0800)
This was migrated to global-jjb long ago. Remove it from
releng/builder.

Change-Id: Ia8f8a9e3fbcf940f79219bb9e93d2555b49c9150
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
scripts/check-unicode.sh [deleted file]

diff --git a/scripts/check-unicode.sh b/scripts/check-unicode.sh
deleted file mode 100755 (executable)
index 10b2a31..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/bash
-# SPDX-License-Identifier: EPL-1.0
-##############################################################################
-# Copyright (c) 2015 The Linux Foundation and others.
-#
-# All rights reserved. This program and the accompanying materials
-# are made available under the terms of the Eclipse Public License v1.0
-# which accompanies this distribution, and is available at
-# http://www.eclipse.org/legal/epl-v10.html
-#
-# Contributors:
-#   Thanh Ha (The Linux Foundation) - Initial implementation
-##############################################################################
-
-directory=${1:-"."}
-
-echo "Scanning $directory"
-if LC_ALL=C grep -r '[^[:print:][:space:]]' "$directory"; then
-    echo "Found files containing non-ascii characters."
-    exit 1
-fi
-
-echo "All files are ASCII only"