From e24898098069a3cf7bd2f81a21ad2dec0471c412 Mon Sep 17 00:00:00 2001 From: Ville Immonen Date: Mon, 31 Jul 2017 12:56:13 -0700 Subject: [PATCH] Fix broken Buck installation link Summary: Running `./scripts/run-android-local-unit-tests.sh` without having installed Buck displays this link. Make it point to a URL that exists. Closes https://github.com/facebook/react-native/pull/15292 Differential Revision: D5529392 Pulled By: hramos fbshipit-source-id: e100823d04fef79a8ecce0e9626fa05864e0aaf8 --- scripts/validate-android-test-env.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/validate-android-test-env.sh b/scripts/validate-android-test-env.sh index 8197d76e5..7542e996d 100755 --- a/scripts/validate-android-test-env.sh +++ b/scripts/validate-android-test-env.sh @@ -10,7 +10,7 @@ # Check that Buck is working. if [ -z "$(which buck)" ]; then echo "You need to install Buck." - echo "See https://buckbuild.com/setup/install.htm for instructions." + echo "See https://buckbuild.com/setup/install.html for instructions." exit 1 fi