1From 0fcceeee325dd42a867bedad5eefc0d60640d64d Mon Sep 17 00:00:00 2001
2From: hovercats <hovercatswithlasereyes@protonmail.com>
3Date: Wed, 1 Jan 2025 23:31:00 +0100
4Subject: [PATCH] kiss-chroot: correct path to /bin/env
5
6---
7 contrib/kiss-chroot | 2 +-
8 1 file changed, 1 insertion(+), 1 deletion(-)
9
10diff --git a/contrib/kiss-chroot b/contrib/kiss-chroot
11index f82ab2e..cfc1921 100755
12--- a/contrib/kiss-chroot
13+++ b/contrib/kiss-chroot
14@@ -78,7 +78,7 @@ main() {
15 log Entering chroot; {
16 _ret=1
17
18- run chroot "$1" /usr/bin/env -i \
19+ run chroot "$1" /bin/env -i \
20 HOME=/root \
21 TERM="$TERM" \
22 SHELL=/bin/sh \
23--
242.45.1
25