changelog shortlog graph tags branches files raw help

Mercurial > infra / changeset: fix bundle

changeset 280: 98c3d10d16df
parent 279: 91b552d64438
child 281: 2481e3e105bb
author: Richard Westhaver <ellis@rwest.io>
date: Mon, 17 Jun 2024 02:23:39 +0000
files: scripts/bundle-packy.sh skelfile
description: fix bundle
     1.1--- a/scripts/bundle-packy.sh	Mon Jun 17 01:59:21 2024 +0000
     1.2+++ b/scripts/bundle-packy.sh	Mon Jun 17 02:23:39 2024 +0000
     1.3@@ -34,5 +34,5 @@
     1.4 done
     1.5 
     1.6 # archive all *.git bundles and Mercurial .hg bundle
     1.7-cd $WD/src && tar -I 'zstd' -cf $OUT/$BUNDLE.tar.zst packy/*
     1.8+cd $WD/src && tar -I 'zstd' -cf $OUT/$BUNDLE.tar.zst packy
     1.9 echo "Done."
     2.1--- a/skelfile	Mon Jun 17 01:59:21 2024 +0000
     2.2+++ b/skelfile	Mon Jun 17 02:23:39 2024 +0000
     2.3@@ -19,8 +19,8 @@
     2.4  (repos (src) #$cd .stash && curl -O https://packy.compiler.company/src/comp.tar.zst && \
     2.5         unzstd comp.tar.zst && tar -xf comp.tar -C src && mv src/hg/* src/ && rm -rf src/hg comp.tar$#)
     2.6  (packy-repos (src) #$cd .stash && curl -O https://vc.compiler.company/src/packy.tar.zst && \
     2.7-              unzstd packy.tar.zst && mkdir -p src/packy && tar -xf packy.tar -C src/packy && \
     2.8-              mv hg/* git/* src/packy/ && rm -rf src/packy/hg src/packy/git packy.tar$#)
     2.9+              unzstd packy.tar.zst && tar -xf packy.tar -C src && \
    2.10+              rm -rf packy.tar$#)
    2.11  ;; containers
    2.12  (archlinux () #$podman build -f .stash/src/pod/Containerfile.archlinux . -t localhost/archlinux$#)
    2.13  (alpine () #$podman build -f .stash/src/pod/Containerfile.alpine . -t localhost/alpine$#)