Fix extraction command in claim page

Running `tar xvf hs*` returns the following errors when multiple files are targeted :

```
tar: hs-client-0.0.9.tar.gz: Not found in archive
tar: hsd-2.4.0.tar.gz: Not found in archive
tar: Error exit delayed from previous errors.
```

It works if it's switched to `ls hs*.gz |xargs -n1 tar -xzf`

More info: https://stackoverflow.com/a/16933431/2092619
pull/16/head
Khaled Bentoumi 2021-05-21 14:11:08 +07:00 committed by GitHub
parent 48fef96d6e
commit 000564eb67
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@
<p>Next, install node-gyp: <b>npm install node-gyp</b></p>
<h2>Download</h2>
<p>Download <b>hsd</b>, <b>hs-client</b>, and <b>hs-airdrop</b> from <a href="https://handshake.org/download/">https://handshake.org/download/</a>. If downloaded from github, the directory structure is slightly different (hsd-2.4.0/hsd should be replaced with just hsd in these instructions).</p>
<p>Extract hsd, hs-client, and hs-airdrop: <b>tar xvf hs*</b></p>
<p>Extract hsd, hs-client, and hs-airdrop: <b>ls hs*.gz |xargs -n1 tar -xzf</b></p>
<p>You may also verify the asc file if desired.</p>
<h2>Install</h2>
<p>In one window, change into the hsd directory <b>cd hsd-*/hsd</b> and then run <b>npm install --production</b></p>.