changelog shortlog graph tags branches files raw help

Mercurial > infra / changeset: bootstrap fix

changeset 312: d0429338ca65
parent 311: 55a2606d7bfb
child 314: 532910875d5a
author: Richard Westhaver <ellis@rwest.io>
date: Sat, 06 Jul 2024 22:35:42 -0400
files: bootstrap.sh
description: bootstrap fix
     1.1--- a/bootstrap.sh	Sat Jul 06 22:25:24 2024 -0400
     1.2+++ b/bootstrap.sh	Sat Jul 06 22:35:42 2024 -0400
     1.3@@ -62,9 +62,11 @@
     1.4   # cp -rf rocksdb/*.so lib/
     1.5 
     1.6   if [ ! -f "bin/skel" ]; then
     1.7-  ensure download "$_core_url" "tmp/${_core_pack}" "$_arch"
     1.8-  unzstd "tmp/${_core_pack}"
     1.9-  tar -xf "tmp/core.tar"
    1.10+  cd tmp
    1.11+  ensure download "$_core_url" "${_core_pack}" "$_arch"
    1.12+  unzstd "${_core_pack}"
    1.13+  tar -xf "core.tar"
    1.14+  cd ..
    1.15   cp -rf tmp/core/bin/* bin/
    1.16   cp -rf tmp/core/share/* share/
    1.17   fi