Skip to content
This repository has been archived by the owner on Nov 3, 2021. It is now read-only.

Make GECKO_PATH absolute in test.sh #7

Merged
merged 1 commit into from
May 15, 2012
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions test.sh
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -3,12 +3,11 @@
. setup.sh . setup.sh


# Determine the absolute path of our location. # Determine the absolute path of our location.
B2G_HOME=`dirname $0` B2G_HOME=$(cd `dirname $0`; pwd)
pushd $B2G_HOME && B2G_HOME=$PWD && popd


# Use default Gecko location if it's not provided in .config. # Use default Gecko location if it's not provided in .config.
if [ -z $GECKO_PATH ]; then if [ -z $GECKO_PATH ]; then
GECKO_PATH=gecko GECKO_PATH=$B2G_HOME/gecko
fi fi


# Run standard set of tests by default. Command line arguments can be # Run standard set of tests by default. Command line arguments can be
Expand Down