Skip to content

Commit

Permalink
Fix up the website URL
Browse files Browse the repository at this point in the history
Summary: Since I moved the website around to give nicer URLs.

Reviewed By: lmvasquezg

Differential Revision: D44865322

fbshipit-source-id: 44fe96cf12851a280f68a14dd60575935ca0f81c
  • Loading branch information
ndmitchell authored and facebook-github-bot committed Apr 11, 2023
1 parent eb97001 commit c77ff3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/buck2_client/src/commands/init.rs
Expand Up @@ -171,7 +171,7 @@ fn initialize_root_buck(path: &Path, prelude: bool) -> anyhow::Result<()> {
if prelude {
writeln!(
buck,
"# A list of available rules and their signatures can be found here: https://buck2.build/docs/generated/starlark/prelude/prelude.bzl"
"# A list of available rules and their signatures can be found here: https://buck2.build/docs/api/rules/"
)?;
writeln!(buck)?;
writeln!(buck, "genrule(")?;
Expand Down Expand Up @@ -325,7 +325,7 @@ prelude = prelude
let buck_path = tempdir_path.join("BUCK");
initialize_root_buck(tempdir_path, true)?;
let actual_buck = fs_util::read_to_string(buck_path)?;
let expected_buck = "# A list of available rules and their signatures can be found here: https://buck2.build/docs/generated/starlark/prelude/prelude.bzl
let expected_buck = "# A list of available rules and their signatures can be found here: https://buck2.build/docs/api/rules/
genrule(
name = \"hello_world\",
Expand Down

0 comments on commit c77ff3f

Please sign in to comment.