diff options
author | Jonas Gorski <jogo@openwrt.org> | 2013-02-21 11:45:27 +0000 |
---|---|---|
committer | Jonas Gorski <jogo@openwrt.org> | 2013-02-21 11:45:27 +0000 |
commit | 47491359745428a2ed0eec39c9c73c1bb4730c1a (patch) | |
tree | 94919232c1936c0179fde7fba1b551f2add5734a /scripts | |
parent | 7464caad2a757250ea2e670271bd7bf259ceb5b0 (diff) | |
download | upstream-47491359745428a2ed0eec39c9c73c1bb4730c1a.tar.gz upstream-47491359745428a2ed0eec39c9c73c1bb4730c1a.tar.bz2 upstream-47491359745428a2ed0eec39c9c73c1bb4730c1a.zip |
scripts/symlink-tree.sh: print warnings/errors to stderr
Makes warnings/errors visible when building with V=w/V=1.
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@35718 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/symlink-tree.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/symlink-tree.sh b/scripts/symlink-tree.sh index 8be5f6c967..e44ebdabbf 100755 --- a/scripts/symlink-tree.sh +++ b/scripts/symlink-tree.sh @@ -24,12 +24,12 @@ if [ -f feeds.conf ] ; then fi if [ -z "$1" ]; then - echo "Syntax: $0 <destination>" + echo "Syntax: $0 <destination>" >&2 exit 1 fi if [ -e "$1" ]; then - echo "Error: $1 already exists" + echo "Error: $1 already exists" >&2 exit 1 fi @@ -37,7 +37,7 @@ set -e # fail if any commands fails mkdir -p dl "$1" for file in $FILES; do [ -e "$PWD/$file" ] || { - echo "ERROR: $file does not exist in the current tree" + echo "ERROR: $file does not exist in the current tree" >&2 exit 1 } ln -s "$PWD/$file" "$1/" |