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

Remove mention of pleasings from plz init message #3173

Merged
merged 2 commits into from
May 21, 2024
Merged
Show file tree
Hide file tree
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
5 changes: 4 additions & 1 deletion src/cmap/BUILD
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
go_library(
name = "cmap",
srcs = glob(["*.go"], exclude=["*_test.go"]),
srcs = glob(
["*.go"],
exclude = ["*_test.go"],
),
pgo_file = "//:pgo",
visibility = ["PUBLIC"],
deps = ["///third_party/go/github.com_cespare_xxhash_v2//:v2"],
Expand Down
10 changes: 8 additions & 2 deletions src/parse/asp/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@ subinclude("//build_defs:benchmark")

go_library(
name = "asp",
srcs = glob(["*.go"], exclude=["*_test.go"]),
srcs = glob(
["*.go"],
exclude = ["*_test.go"],
),
pgo_file = "//:pgo",
visibility = ["PUBLIC"],
deps = [
Expand All @@ -19,7 +22,10 @@ go_library(

go_test(
name = "asp_test",
srcs = glob(["*_test.go"], exclude=["*_bench_test.go"]),
srcs = glob(
["*_test.go"],
exclude = ["*_bench_test.go"],
),
data = ["test_data"],
deps = [
":asp",
Expand Down
4 changes: 2 additions & 2 deletions src/please.go
Original file line number Diff line number Diff line change
Expand Up @@ -718,8 +718,8 @@ var buildFunctions = map[string]func() int{
}

fmt.Println()
fmt.Println("Pleasings are a collection of auxiliary build rules that support other languages and technologies not present in the core please distribution.")
fmt.Println("For more information visit https://github.com/thought-machine/pleasings")
fmt.Println("There are auxiliary build rules available via plugins for various languages and technologies.")
fmt.Println("For a list of available plugins visit https://github.com/please-build/please-rules. Or to get up and running quickly, try `plz init plugin [go|java|python|cc]`")
fmt.Println()

return 0
Expand Down
5 changes: 4 additions & 1 deletion src/query/BUILD
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
go_library(
name = "query",
srcs = glob(["*.go"], exclude=["*_test.go"]),
srcs = glob(
["*.go"],
exclude = ["*_test.go"],
),
pgo_file = "//:pgo",
visibility = ["PUBLIC"],
deps = [
Expand Down
Loading