This is an automated email from the ASF dual-hosted git repository.
alamb pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git
The following commit(s) were added to refs/heads/main by this push:
new c152fc21aa corrected order of cd command to git checkout (#6318)
c152fc21aa is described below
commit c152fc21aa4fa10fee9236b42159b45bbf9c405a
Author: Sunny Jain <[email protected]>
AuthorDate: Wed May 10 14:59:30 2023 +0200
corrected order of cd command to git checkout (#6318)
git checkout 12.0.0 was erroring due to .git file could not be found
---
docs/source/user-guide/cli.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/source/user-guide/cli.md b/docs/source/user-guide/cli.md
index 5954f0aaeb..ec0a917c27 100644
--- a/docs/source/user-guide/cli.md
+++ b/docs/source/user-guide/cli.md
@@ -100,8 +100,8 @@ this to work.
```bash
git clone https://github.com/apache/arrow-datafusion
-git checkout 12.0.0
cd arrow-datafusion
+git checkout 12.0.0
docker build -f datafusion-cli/Dockerfile . --tag datafusion-cli
docker run -it -v $(your_data_location):/data datafusion-cli
```