From 000564eb67d5d2290786ddc1cf0e281c050b0f29 Mon Sep 17 00:00:00 2001 From: Khaled Bentoumi <11541898+BentoumiTech@users.noreply.github.com> Date: Fri, 21 May 2021 14:11:08 +0700 Subject: [PATCH] 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 --- claim/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/claim/index.html b/claim/index.html index 3e10df3..7b5ed86 100644 --- a/claim/index.html +++ b/claim/index.html @@ -101,7 +101,7 @@

Next, install node-gyp: npm install node-gyp

Download

Download hsd, hs-client, and hs-airdrop from https://handshake.org/download/. If downloaded from github, the directory structure is slightly different (hsd-2.4.0/hsd should be replaced with just hsd in these instructions).

-

Extract hsd, hs-client, and hs-airdrop: tar xvf hs*

+

Extract hsd, hs-client, and hs-airdrop: ls hs*.gz |xargs -n1 tar -xzf

You may also verify the asc file if desired.

Install

In one window, change into the hsd directory cd hsd-*/hsd and then run npm install --production

.