aboutsummaryrefslogtreecommitdiff
path: root/log.sh
diff options
context:
space:
mode:
authorKen Liu <ken.liu@arm.com>2020-01-13 17:28:26 +0800
committerKen Liu <ken.liu@arm.com>2020-01-15 02:04:25 +0000
commit4c415f2ba253af8aea71df46b83b067a8966225e (patch)
tree340ac77a483fe2bbc3a210c37ca264519dcb1486 /log.sh
parentc0b668593dba12c17aa1bec8cd2dc653d52ce8c5 (diff)
downloadtrusted-firmware-m-4c415f2ba253af8aea71df46b83b067a8966225e.tar.gz
Build: Remove obsolete script file
The 'log.sh' and 'log.bat' were for build system integration and now obsoleted, remove them from the code base. Change-Id: I29bae5e06da43372946eaa14edff3ed9a798fe07 Signed-off-by: Ken Liu <ken.liu@arm.com>
Diffstat (limited to 'log.sh')
-rwxr-xr-xlog.sh26
1 files changed, 0 insertions, 26 deletions
diff --git a/log.sh b/log.sh
deleted file mode 100755
index 288c0f4625..0000000000
--- a/log.sh
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/bin/bash
-#-------------------------------------------------------------------------------
-# Copyright (c) 2017, Arm Limited. All rights reserved.
-#
-# SPDX-License-Identifier: BSD-3-Clause
-#
-#-------------------------------------------------------------------------------
-
-if [ ! -e "c:/" ]
-then
-function cygpath {
- readlink -f "$2"
-}
-fi
-
-file=`readlink -e ${@:$#:1}`
-cmd=`which ${@:1:1}` || cmd=${@:1:1}
-cmd=`cygpath -m "$cmd"`
-cat <<EOM
-{
- "directory": "`cygpath -m "$PWD"`",
- "command": "\"$cmd\" ${@:2:(( $#-1 ))}",
- "file": "`cygpath -m "$file"`"
-},
-EOM
-