Skip to content

Commit

Permalink
MINOR: [GLib][Docs] Specify downloaded archive name explicitly (apach…
Browse files Browse the repository at this point in the history
…e#38497)

### Rationale for this change

Unable to extract on the [arrow/c_glib/README.md](https://github.com/apache/arrow/blob/848725f31b2633a35a0389e4ffb96e1c14bc8e26/c_glib/README.md?plain=1#L70-L71) because the downloaded file name is `closer.lua?action=download&filename=arrow%2Farrow-12.0.0%2Fapache-arrow-12.0.0.tar.gz` not `apache-arrow-12.0.0.tar.gz`.

### What changes are included in this PR?

Specify the downloaded file name explicitly.

Authored-by: Tsutomu Katsube <tsuto.katsube@gmail.com>
Signed-off-by: Sutou Kouhei <kou@clear-code.com>
  • Loading branch information
tikkss committed Oct 28, 2023
1 parent 1633f8d commit 7ef517e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion c_glib/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@ GLib (replace the version number in the following commands with the
one you use):

```console
$ wget 'https://www.apache.org/dyn/closer.lua?action=download&filename=arrow/arrow-12.0.0/apache-arrow-12.0.0.tar.gz'
$ wget 'https://www.apache.org/dyn/closer.lua?action=download&filename=arrow/arrow-12.0.0/apache-arrow-12.0.0.tar.gz' \
--output-document apache-arrow-12.0.0.tar.gz
$ tar xf apache-arrow-12.0.0.tar.gz
$ cd apache-arrow-12.0.0
```
Expand Down

0 comments on commit 7ef517e

Please sign in to comment.