From 7504086a5ef4c22f0e50e8d6a97ad88bccc56169 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Wed, 26 Sep 2018 02:52:45 -0400 Subject: [PATCH] Use modified Firefox executable from zotero-standalone-build in tests --- test/runtests.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/runtests.sh b/test/runtests.sh index c23c3d8eb2..edc3e1b53a 100755 --- a/test/runtests.sh +++ b/test/runtests.sh @@ -17,9 +17,9 @@ function makePath { if [ -z "$FX_EXECUTABLE" ]; then if [ "`uname`" == "Darwin" ]; then - FX_EXECUTABLE="/Applications/Firefox Unbranded.app/Contents/MacOS/firefox" + FX_EXECUTABLE="$( dirname "$ROOT_DIR" )/zotero-standalone-build/xulrunner/Firefox.app/Contents/MacOS/firefox" else - FX_EXECUTABLE="firefox" + FX_EXECUTABLE="$( dirname "$ROOT_DIR" )/../zotero-standalone-build/xulrunner/firefox-x86_64/firefox" fi fi