Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix broken Buck installation link #15292

Closed
wants to merge 1 commit into from
Closed
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
2 changes: 1 addition & 1 deletion scripts/validate-android-test-env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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."
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should we link directly to https://buckbuild.com/setup/getting_started.html?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There are multiple Buck installation links in the docs and they all point to https://buckbuild.com/setup/install.html. Maybe it's easier to make sure the link doesn't break in the future, if they're all the same? We could also change them all to https://buckbuild.com/setup/getting_started.html, which is the URL /setup/install.html currently redirects to, but I'm not sure if that's worth the trouble?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I just thought that redirect might break in future. if you think it's not worth the trouble then sure, let's run with it.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

cc @hramos

exit 1
fi

Expand Down