Skip to content

Commit

Permalink
Don't print errors if realpath isn't defined. r=@jsha
Browse files Browse the repository at this point in the history
  • Loading branch information
J.C. Jones committed Apr 8, 2015
1 parent e5aae7e commit 9404753
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
#!/bin/bash
# Run all tests and coverage checks. Called from Travis automatically, also
# suitable to run manually. See list of prerequisite packages in .travis.yml
if type realpath ; then
if type realpath 2>&1 >/dev/null; then
cd $(realpath $(dirname $0))
fi

Expand Down

0 comments on commit 9404753

Please sign in to comment.