changelog shortlog graph tags branches files raw help

Mercurial > core / changeset: skel dist fix

changeset 672: e14805b2f02f
parent 671: 1f065ead57ca
child 673: e052bac27cec
author: Richard Westhaver <ellis@rwest.io>
date: Mon, 23 Sep 2024 21:36:33 -0400
files: skelfile
description: skel dist fix
     1.1--- a/skelfile	Mon Sep 23 21:22:28 2024 -0400
     1.2+++ b/skelfile	Mon Sep 23 21:36:33 2024 -0400
     1.3@@ -171,13 +171,13 @@
     1.4  (emacs () #$make -C emacs$#)
     1.5  ;; TODO 2024-09-15: 
     1.6  (core-syms.sxp () (with-open-file (f ".stash/symbols.sxp" :direction :output)))
     1.7- (dist () #$cd .stash
     1.8-       mkdir -pv core core/bin core/share/lisp/fasl core/lib
     1.9-       mv *.core core/share/lisp/
    1.10-       mv *.fasl core/share/lisp/fasl/
    1.11-       mv *.so core/lib/
    1.12-       mv $(find -maxdepth 1 -type f ! -name "*.*") core/bin/
    1.13-       tar -I 'zstd' -cf core.tar.zst core/*$#)
    1.14+ (dist () #$mkdir -pv .stash/tmp/core/bin/ .stash/tmp/core/share/lisp/fasl/ .stash/tmp/core/lib/
    1.15+       cd .stash
    1.16+       mv *.core tmp/core/share/lisp/
    1.17+       mv *.fasl tmp/core/share/lisp/fasl/
    1.18+       mv *.so tmp/core/lib/
    1.19+       mv $(find -maxdepth 1 -type f ! -name "*.*") tmp/core/bin/
    1.20+       cd tmp && tar -I 'zstd' -cf core.tar.zst core/* && mv core.tar.zst ../$#)
    1.21  (dist-clean (clean) #$cd .. && tar -I 'zstd' -cf core/core-source.tar.zst core/* && cd core
    1.22              mkdir -pv .stash
    1.23              mv core-source.tar.zst .stash/$#))