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
This commit is contained in:
Ville Immonen 2017-07-31 12:56:13 -07:00 committed by Facebook Github Bot
parent 1954438533
commit e248980980
1 changed files with 1 additions and 1 deletions

View File

@ -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