changelog shortlog graph tags branches files raw help

Mercurial > infra / changeset: update to infra.core

changeset 292: 8b0c06b812c1
parent 291: 9c37db8ed167
child 293: 39291a549477
author: Richard Westhaver <ellis@rwest.io>
date: Wed, 19 Jun 2024 20:43:10 +0000
files: bootstrap.sh
description: update to infra.core
     1.1--- a/bootstrap.sh	Wed Jun 19 20:37:13 2024 +0000
     1.2+++ b/bootstrap.sh	Wed Jun 19 20:43:10 2024 +0000
     1.3@@ -60,17 +60,17 @@
     1.4   # tar -xf "core.tar"
     1.5   # cp -rf core/bin/* bin/
     1.6   # cp -rf core/share/* share/
     1.7-  if [ ! -f "tmp/$_user_core" ]; then
     1.8-    ensure download "$_user_core_url" "tmp/$_user_core" "$_arch"
     1.9-    cp "tmp/$_user_core" share/lisp/user.core
    1.10-    chmod +x bin/*
    1.11+  if [ ! -f "share/lisp/$_infra_core" ]; then
    1.12+    ensure download "$_infra_core_url" "share/lisp/$_infra_core" "$_arch"
    1.13   fi
    1.14 
    1.15+  chmod +x bin/*
    1.16+
    1.17   say "bootstrap complete"
    1.18 
    1.19   say "starting lisp..."
    1.20   cd .. && \
    1.21-    .stash/bin/sbcl --core .stash/share/lisp/user.core \
    1.22+    .stash/bin/sbcl --core .stash/share/lisp/infra.core \
    1.23                     --load autogen.lisp \
    1.24                     --eval "(infra/autogen:autogen)" \
    1.25                     --non-interactive \