diff options
author | Cem Keylan <cem@ckyln.com> | 2020-04-04 01:30:23 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2020-04-04 01:30:23 +0300 |
commit | fff0adff7259406ffd1cfc1a1bb94df57bf0135c (patch) | |
tree | 0cd483945cade167b6c4ba15a39f42bf35707574 /core/kiss/files | |
parent | 7b1cb7036564e48353c27c7af005772197eeefed (diff) | |
download | repository-fff0adff7259406ffd1cfc1a1bb94df57bf0135c.tar.gz |
kiss: bump to 1.11.2
Diffstat (limited to 'core/kiss/files')
-rwxr-xr-x | core/kiss/files/kiss-chbuild | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/core/kiss/files/kiss-chbuild b/core/kiss/files/kiss-chbuild deleted file mode 100755 index 9df18ccb..00000000 --- a/core/kiss/files/kiss-chbuild +++ /dev/null @@ -1,35 +0,0 @@ -#!/bin/sh -e -# -# Create/destroy temporary chroots. - -log() { - printf '\033[31;1m->\033[m %s.\n' "$@" -} - -clean() { - log "Destroying chroot" - su -c "rm -rf chroot-$pid" || clean -} - -pid=$$ - -cd "${cac_dir:=$KISS_ROOT${XDG_CACHE_HOME:-$HOME/.cache}/kiss}" - -[ -f carbs-rootfs.tar.xz ] || { - log "Downloading chroot tarball" - wget https://dl.carbslinux.org/releases/carbs-rootfs.tar.xz -} - -[ -d carbs-chroot ] || { - log "Extracting chroot" - mkdir -p carbs-chroot - tar xvf carbs-rootfs.tar.xz -C carbs-chroot -} - -log "Creating temporary chroot" -cp -a carbs-chroot "chroot-$pid" - -trap clean EXIT INT - -log "Entering chroot" -su -c "kiss-chroot chroot-$pid" |