Skip to content

Commit

Permalink
scripts/symlink-tree.sh: print warnings/errors to stderr
Browse files Browse the repository at this point in the history
Makes warnings/errors visible when building with V=w/V=1.

Signed-off-by: Jonas Gorski <[email protected]>

SVN-Revision: 35718
  • Loading branch information
KanjiMonster committed Feb 21, 2013
1 parent 5449b24 commit 2d8c511
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/symlink-tree.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,20 +24,20 @@ 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

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/"
Expand Down

0 comments on commit 2d8c511

Please sign in to comment.