qicq1c commited on
Commit
f642c0e
·
verified ·
1 Parent(s): e58aede

Fix Hyperism shard extraction target

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -102,10 +102,10 @@ Restore the Hyperism frame tree from the downloaded tar shards:
102
 
103
  ```bash
104
  cd "$DATA_ROOT"
105
- mkdir -p hyperism/hyperism/unzip
106
 
107
  for shard in hyperism_required_shards/*.tar; do
108
- tar --skip-old-files -xf "$shard" -C hyperism/hyperism/unzip
109
  done
110
  ```
111
 
 
102
 
103
  ```bash
104
  cd "$DATA_ROOT"
105
+ mkdir -p hyperism
106
 
107
  for shard in hyperism_required_shards/*.tar; do
108
+ tar --skip-old-files -xf "$shard" -C hyperism
109
  done
110
  ```
111