From 465651176b279f4c3c0f84ee4def594727b5ef48 Mon Sep 17 00:00:00 2001 From: David Beitey Date: Mon, 23 Jan 2023 11:01:11 +1000 Subject: [PATCH] Update repl README's standalone build commands By default, `go build .` was outputting `./main` as a binary. This sets an output flag from `go build`. Conversely, the `mv` line could have been updated, but an executable called `main` seems too generic. --- repl/main/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/repl/main/README.md b/repl/main/README.md index 4b152320..3cc65d26 100644 --- a/repl/main/README.md +++ b/repl/main/README.md @@ -162,7 +162,7 @@ To build and install as a standalone binary: ``` $ git clone git@github.com:google/cel-go.git ./cel-go $ cd ./cel-go/repl/main -$ go build . +$ go build -o repl . # e.g. to your $PATH $ mv ./repl -``` \ No newline at end of file +```